98se.css/test.sh
2020-04-21 22:27:34 -04:00

12 lines
169 B
Bash

#!/bin/sh
npm run build
output=$( git diff build )
if [ -z "$output" ]
then
break
else
echo "Build doesn't match, wanna run \`npm run build\`?"
exit 1;
fi