mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 17:22:08 +03:00
10 lines
136 B
Bash
Executable File
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
|