9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
yarn --cwd remote --frozen-lockfile --check-files
|
|
|
|
cd ..
|