Archived
1
0

refactor: remove submodule code from steps scripts

This commit is contained in:
Joe Previte 2020-12-16 11:48:02 -07:00
parent fcc16e5397
commit 5830532726
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
3 changed files with 0 additions and 14 deletions

View File

@ -6,11 +6,6 @@ main() {
yarn --frozen-lockfile
git submodule update --init
# We do not `yarn vscode` to make fmt.sh faster.
# If the patch fails to apply, then it's likely already applied
yarn vscode:patch &> /dev/null || true
yarn fmt
}

View File

@ -6,10 +6,6 @@ main() {
yarn --frozen-lockfile
git submodule update --init
# We need to fetch VS Code's deps for lint dependencies.
yarn vscode
yarn lint
}

View File

@ -6,11 +6,6 @@ main() {
yarn --frozen-lockfile
git submodule update --init
# We do not `yarn vscode` to make test.sh faster.
# If the patch fails to apply, then it's likely already applied
yarn vscode:patch &> /dev/null || true
yarn test
}