2022-11-09 09:58:06 -05:00
|
|
|
#!/usr/bin/env bash
|
2021-12-07 15:11:01 +11:00
|
|
|
|
2022-10-12 16:15:51 +01:00
|
|
|
set -e
|
|
|
|
|
2021-12-07 15:11:01 +11:00
|
|
|
# If $1 looks like v1.2.3 or v1.2.3-foo, strip the leading v, then print it to stdout
|
|
|
|
if [[ $1 =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
|
|
|
echo ${1:1}
|
|
|
|
else
|
|
|
|
echo $1
|
|
|
|
fi
|