This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
fradrive-old/is-clean.sh

7 lines
148 B
Bash
Executable File

#!/usr/bin/env bash
if ! ( output=$(git status --porcelain) && [ -z "$output" ] ); then
echo "Working directory isn't clean" >&2
exit 1
fi