mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-23 08:27:38 +03:00
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
yarn --cwd remote --frozen-lockfile --check-files
|
|
|
|
cd ..
|
|
|
|
tar -cf remote-dependencies.tar ./vscode/remote/node_modules
|