File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,10 @@ jobs:
174174 name : Install and link the module.
175175 command : |
176176 npm install
177+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
178+ if ! test -x "$repo_tools"; then
179+ chmod +x "$repo_tools"
180+ fi
177181 npm link
178182 - run :
179183 name : Link the module being tested to the samples.
@@ -207,7 +211,12 @@ jobs:
207211 -k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
208212 - run :
209213 name : Install modules and dependencies.
210- command : npm install
214+ command : |-
215+ npm install
216+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
217+ if ! test -x "$repo_tools"; then
218+ chmod +x "$repo_tools"
219+ fi
211220 - run :
212221 name : Run system tests.
213222 command : npm run system-test
You can’t perform that action at this time.
0 commit comments