You've already forked 98.css
mirror of
https://github.com/jdan/98.css.git
synced 2026-05-05 06:01:22 +09:00
13 lines
169 B
Bash
13 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
|