mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-07 14:40:55 +03:00
9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "checking package-lock.json for changes"
|
|
if [ "$1" != "$2" ]; then
|
|
DIFF=$(git diff $1 $2 package-lock.json)
|
|
if [ "$DIFF" != "" ]; then
|
|
npm install
|
|
fi
|
|
fi |