mirror of
https://github.com/danog/code-server.git
synced 2024-12-12 09:19:50 +01:00
17 lines
242 B
Bash
17 lines
242 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
|
||
|
yarn release:static
|
||
|
./ci/build/test-static-release.sh
|
||
|
./ci/build/archive-static-release.sh
|
||
|
|
||
|
if [[ $OSTYPE == linux* ]]; then
|
||
|
yarn pkg
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
main "$@"
|