f885b29675
- Use yarn for vscode vendoring. - Grab hash from package.
11 lines
164 B
Bash
Executable File
11 lines
164 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
echo 'Installing VS Code dependencies...'
|
|
cd modules/code-oss-dev
|
|
yarn install --frozen-lockfile
|
|
}
|
|
|
|
main "$@"
|