7 lines
172 B
Bash
Executable File
7 lines
172 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
if [[ -e .git && ! -z "$(git status --untracked-files=no --porcelain)" ]]; then
|
|
>&2 echo "Uncommited changes, commit your changes first"
|
|
exit 1
|
|
fi
|