mirror of https://git.tuxpa.in/a/code-server.git
11 lines
164 B
Bash
11 lines
164 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
echo 'Installing VS Code dependencies...'
|
||
|
cd modules/code-oss-dev
|
||
|
yarn install --frozen-lockfile
|
||
|
}
|
||
|
|
||
|
main "$@"
|