refactor: passing linter for root bash scripts (#1569)

This commit is contained in:
Zac
2023-07-20 13:25:13 -05:00
committed by GitHub
parent d6b7880a05
commit b4318d78a0
16 changed files with 96 additions and 73 deletions

View File

@@ -1,8 +1,9 @@
#!/bin/bash
#!/usr/bin/env bash
# shellcheck disable=SC1091
set -ex
if [ -f "./remote-dependencies.tar" ]; then
if [[ -f "./remote-dependencies.tar" ]]; then
tar -xf ./remote-dependencies.tar ./vscode/remote/node_modules
fi