blob: fa636f29c847b796fd25394dc1fb482f481ad359 [file] [log] [blame]
#!/bin/sh
# make sure git has no un commit files
if [ -n "$(git status --untracked-files=no --porcelain)" ]; then
echo "Please commit your change before run this shell, un commit files:"
git status --untracked-files=no --porcelain
exit -1
fi