mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04: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
144 B
Bash
Executable File
10 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Script to perform a release of element-web.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./node_modules/matrix-js-sdk/release.sh "$@"
|