mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
46c005a5d3
Some operating systems, such as NixOS, don't place binaries in /bin. The appropriate cross-platform method is to use /usr/bin/env.
10 lines
222 B
Bash
Executable file
10 lines
222 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# 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
|