mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
14 lines
175 B
Bash
Executable file
14 lines
175 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
cd lib/vscode
|
|
yarn ${CI+--frozen-lockfile}
|
|
|
|
symlink_asar
|
|
}
|
|
|
|
main "$@"
|