Skip to content

Commit 5d7259c

Browse files
committed
fix: execute install in subshell
1 parent 02eee70 commit 5d7259c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
executor: node12
1111
steps:
1212
- checkout
13-
- run: cd functions && npm ci
13+
- run: (cd functions && npm ci)
1414

1515
# test:
1616
# executor: node12

scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ fi
3434
tar xzf static_website.tar.gz -C public
3535

3636
# Deploy to Firebase
37-
cd functions && npm ci
37+
(cd functions && npm ci)
3838
functions/node_modules/.bin/firebase deploy --token="${TOKEN}" --project="${PROJECT}"

0 commit comments

Comments
 (0)