12 lines
173 B
Bash
12 lines
173 B
Bash
#!/bin/sh
|
|
|
|
npm run build
|
|
output=$( git diff build )
|
|
|
|
if [ -z "$output" ]
|
|
then
|
|
break
|
|
else
|
|
echo "Please commit the latest build of 98.css (git commit)"
|
|
exit 1;
|
|
fi
|