Files
tauri-plugins-workspace/.scripts/ci/has-diff.sh
T
2023-05-23 14:20:14 -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