mirror of https://git.tuxpa.in/a/code-server.git
19 lines
402 B
Bash
Executable File
19 lines
402 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Builds vscode into vendor/modules/code-oss-dev/out-vscode.
|
|
|
|
# MINIFY controls whether a minified version of vscode is built.
|
|
MINIFY=${MINIFY-true}
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")/../.."
|
|
|
|
cd vendor/modules/code-oss-dev
|
|
|
|
# Any platform works since we have our own packaging step (for now).
|
|
yarn gulp "vscode-reh-web-linux-x64${MINIFY:+-min}"
|
|
}
|
|
|
|
main "$@"
|