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.
9 lines
144 B
Bash
Executable file
9 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 "$@"
|