mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
dirty=$(git ls-files --modified)
|
|
|
|
set +x
|
|
if [[ $dirty ]]; then
|
|
echo "================================="
|
|
echo "Files were not formatted properly"
|
|
echo "$dirty"
|
|
echo "================================="
|
|
exit 1
|
|
fi |