Archived
1
0

Symlink node_modules.asar to node_modules in lib/vscode

Closes #2197.
This commit is contained in:
Asher
2020-12-17 15:16:04 -06:00
parent 98338e9a44
commit 121a520447
7 changed files with 50 additions and 4 deletions

14
ci/dev/postinstall.sh Executable file
View File

@ -0,0 +1,14 @@
#!/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 "$@"