Skip to content

Commit a500453

Browse files
alexander-fenstercallmehiphop
authored andcommitted
chore: one more workaround for repo-tools EPERM (#26)
1 parent a790be5 commit a500453

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • packages/google-cloud-bigquery-datatransfer/.circleci

packages/google-cloud-bigquery-datatransfer/.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,12 @@ jobs:
176176
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
177177
- run:
178178
name: Install modules and dependencies.
179-
command: npm install
179+
command: |-
180+
npm install
181+
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
182+
if ! test -x "$repo_tools"; then
183+
chmod +x "$repo_tools"
184+
fi
180185
- run:
181186
name: Run system tests.
182187
command: npm run system-test

0 commit comments

Comments
 (0)