tauri/.scripts/ci/has-diff.sh
2022-10-17 12:09:23 -03:00

10 lines
136 B
Bash
Executable File

#!/bin/bash
if git diff --quiet --ignore-submodules HEAD
then
echo "working directory is clean"
else
echo "found diff"
exit 1
fi