Skip to content

Commit

Permalink
run npm cache clean with --force in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
viankakrisna committed Aug 29, 2017
1 parent 26197e7 commit 503223c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/e2e-installs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ then
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^5.4.0
fi;
npm cache clean || npm cache verify
npm cache clean --force || npm cache verify
fi

# Prevent bootstrap, we only want top-level dependencies
Expand Down
2 changes: 1 addition & 1 deletion tasks/e2e-kitchensink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ then
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^5.4.0
fi;
npm cache clean || npm cache verify
npm cache clean --force || npm cache verify
fi

# Prevent bootstrap, we only want top-level dependencies
Expand Down
2 changes: 1 addition & 1 deletion tasks/e2e-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ then
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^5.4.0
fi;
npm cache clean || npm cache verify
npm cache clean --force || npm cache verify
fi

# Prevent bootstrap, we only want top-level dependencies
Expand Down

0 comments on commit 503223c

Please sign in to comment.