#!/usr/bin/env bash EXCEPTIONS=( "internal/compiler/wasm/opa/opa.wasm" "internal/compiler/wasm/opa/callgraph.csv" ) STATUS=$(git status --porcelain) HAS_CHANGES=0 if [[ -z "${STATUS}" ]]; then exit 0 else for file in $(echo -E "${STATUS}" | awk '{print $2}'); do if [[ "${EXCEPTIONS[@]}" =~ "${file}" ]]; then echo "Ignoring changed file: ${file}" else HAS_CHANGES=1 fi done fi if [[ "${HAS_CHANGES}" == "1" ]]; then echo "" echo "git status" git status echo "git diff" git diff exit 1 fi