mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 21:27:51 +00:00
6e0638f3be
Change-type: patch
21 lines
524 B
Bash
Executable File
21 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cp npm-shrinkwrap.json npm-shrinkwrap.json.old
|
|
npm i
|
|
npm dedupe
|
|
npm i
|
|
|
|
if ! diff -q npm-shrinkwrap.json npm-shrinkwrap.json.old > /dev/null; then
|
|
rm npm-shrinkwrap.json.old
|
|
echo "** npm-shrinkwrap.json was not deduplicated or not fully committed - FAIL **";
|
|
echo "** This can usually be fixed with: **";
|
|
echo "** git checkout master -- npm-shrinkwrap.json **";
|
|
echo "** rm -rf node_modules **";
|
|
echo "** npm install && npm dedupe && npm install **";
|
|
exit 1;
|
|
fi
|
|
|
|
rm npm-shrinkwrap.json.old
|