Commit 8c75f7d
Merge #550
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]>1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
0 commit comments