mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 21:27:51 +00:00
648a73fd91
Change-type: patch
18 lines
386 B
Bash
Executable File
18 lines
386 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 "** Please run 'npm ci', followed by 'npm dedupe' **";
|
|
exit 1;
|
|
fi
|
|
|
|
rm npm-shrinkwrap.json.old
|