mirror of
https://github.com/cdr/code-server.git
synced 2025-12-09 01:45:44 +01:00
12 lines
164 B
Bash
Executable file
12 lines
164 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn release:static
|
|
./ci/build/test-static-release.sh
|
|
yarn package
|
|
}
|
|
|
|
main "$@"
|