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