mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
492038a312
The LavaMoat policies and allow-scripts configuration are now validated in parallel. They are still only validated for release candidate branches and the `master` branch.
12 lines
123 B
Bash
Executable File
12 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
if ! git diff --exit-code
|
|
then
|
|
echo "Working tree dirty"
|
|
exit 1
|
|
fi
|