code-server/ci/dev/postinstall.sh

20 lines
261 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
source ./ci/lib.sh
# This installs the dependencies needed for testing
cd test
yarn
cd ..
2021-07-26 19:46:13 +00:00
# cd lib/vscode
# yarn ${CI+--frozen-lockfile}
2021-07-26 19:46:13 +00:00
# symlink_asar
}
main "$@"