2020-12-17 21:16:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
source ./ci/lib.sh
|
|
|
|
|
2021-01-21 23:39:04 +00:00
|
|
|
# This installs the dependencies needed for testing
|
|
|
|
cd test
|
|
|
|
yarn
|
|
|
|
cd ..
|
|
|
|
|
2020-12-17 21:16:04 +00:00
|
|
|
cd lib/vscode
|
|
|
|
yarn ${CI+--frozen-lockfile}
|
|
|
|
|
|
|
|
symlink_asar
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|