Files
clr-installer/scripts/developer-image-pre.sh
T
2018-11-15 11:23:40 -08:00

15 lines
209 B
Bash
Executable File

#!/bin/bash
LINES=$(git status --porcelain --untracked=no | wc -l)
if [ ${LINES} -ne 0 ]; then
echo "Check-in or stash all files first!"
echo ""
git status --untracked=no
exit 1
fi
exit 0