Skip to content

Commit 32cc67b

Browse files
Fix for forward slash
1 parent 5436078 commit 32cc67b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ if [ -z "$tagPrefix" ]
172172
then
173173
current_tag=${tag}
174174
else
175-
current_tag="$(echo ${tag}| sed "s/${tagPrefix}//g")"
175+
current_tag="$(echo ${tag}| sed "s;${tagPrefix};;g")"
176176
fi
177177
case "$log" in
178178
*$major_string_token* ) new=${tagPrefix}$(semver -i major "${current_tag}"); part="major";;

0 commit comments

Comments
 (0)