mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
12 lines
123 B
Bash
12 lines
123 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
set -o pipefail
|
||
|
|
||
|
if ! git diff --exit-code
|
||
|
then
|
||
|
echo "Working tree dirty"
|
||
|
exit 1
|
||
|
fi
|