We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a790be5 commit a500453Copy full SHA for a500453
1 file changed
packages/google-cloud-bigquery-datatransfer/.circleci/config.yml
@@ -176,7 +176,12 @@ jobs:
176
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
177
- run:
178
name: Install modules and dependencies.
179
- command: npm install
+ 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
185
186
name: Run system tests.
187
command: npm run system-test
0 commit comments