Skip to content

Commit

Permalink
chore: one more workaround for repo-tools EPERM (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster authored and callmehiphop committed Mar 29, 2018
1 parent fd4949f commit 6ca738c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/google-cloud-resourcemanager/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ jobs:
name: Install and link the module.
command: |
npm install
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
if ! test -x "$repo_tools"; then
chmod +x "$repo_tools"
fi
npm link
- run:
name: Link the module being tested to the samples.
Expand Down Expand Up @@ -207,7 +211,12 @@ jobs:
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
- run:
name: Install modules and dependencies.
command: npm install
command: |-
npm install
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
if ! test -x "$repo_tools"; then
chmod +x "$repo_tools"
fi
- run:
name: Run system tests.
command: npm run system-test
Expand Down

0 comments on commit 6ca738c

Please sign in to comment.