Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
550: Fix check release script replacing tr with cut r=bidoubiwa a=bidoubiwa The check-release script was using `tr`, tr removed every character provided as argument, thus in the script, the following: `tr -d 'refs/tags/v'` removes every occurrence of the letters it contains. In our case, it removes `s, t, r, a`. resulting in `refs/tags/v0.1.0-strapi-v3.1` being transformed in `0.1.0-pi-v3.1`. I updated the `check-release.sh` script using `cut` to remove these first 12 characters `refs/tags/v`. Co-authored-by: Charlotte Vermandel <[email protected]>
- Loading branch information