mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 17:02:27 +01:00
14 lines
160 B
Bash
Executable file
14 lines
160 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn
|
|
yarn vscode
|
|
yarn build
|
|
yarn build:vscode
|
|
yarn release
|
|
}
|
|
|
|
main "$@"
|