#!/usr/bin/env bash echo "[+] Running the linter" make -q lint output=$? if [ "$output" = "2" ]; then exit 0 else make lint fi