install_remote_dependencies.sh 135 B

123456789
  1. #!/bin/bash
  2. set -e
  3. cd vscode || { echo "'vscode' dir not found"; exit 1; }
  4. yarn --cwd remote --frozen-lockfile --check-files
  5. cd ..