mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-02 03:31:38 +00:00
15 lines
209 B
Bash
Executable File
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
|