mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-21 18:54:30 +01:00
Merge pull request #14396 from twbs/retry-npm
Add retries to uncached-npm-install.sh
This commit is contained in:
commit
c8f1dd7e97
@ -2,5 +2,14 @@
|
|||||||
set -e
|
set -e
|
||||||
cd .. # /bootstrap/
|
cd .. # /bootstrap/
|
||||||
cp test-infra/npm-shrinkwrap.json npm-shrinkwrap.json
|
cp test-infra/npm-shrinkwrap.json npm-shrinkwrap.json
|
||||||
npm install
|
# npm is flaky, so try multiple times
|
||||||
|
MAXTRIES=3
|
||||||
|
TRIES=1
|
||||||
|
while ! npm install; do
|
||||||
|
if [ $TRIES -ge $MAXTRIES ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
TRIES=$(($TRIES + 1))
|
||||||
|
echo "Retrying npm install (Try $TRIES of $MAXTRIES)..."
|
||||||
|
done
|
||||||
rm npm-shrinkwrap.json
|
rm npm-shrinkwrap.json
|
||||||
|
Loading…
x
Reference in New Issue
Block a user