Files
element-web/scripts/normalize-version.sh
T

9 lines
206 B
Bash
Raw Normal View History

2021-12-07 15:11:01 +11:00
#!/bin/bash
# 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