mirror of
https://github.com/jdan/98.css.git
synced 2025-01-17 20:58:32 +01:00
13 lines
178 B
Bash
13 lines
178 B
Bash
#!/bin/sh
|
|
|
|
npm run build
|
|
output=$( git diff build docs )
|
|
|
|
if [ -z "$output" ]
|
|
then
|
|
break
|
|
else
|
|
echo "Please commit the latest build of 98.css (git commit)"
|
|
exit 1;
|
|
fi
|