]> git.immae.eu Git - perso/Immae/Config/Ansible.git/blame - roles/git/files/config_files/git/templates_fretlink/hooks/pre-push
Add nix syntax highlight to vim
[perso/Immae/Config/Ansible.git] / roles / git / files / config_files / git / templates_fretlink / hooks / pre-push
CommitLineData
397c4fed
IB
1#!/usr/bin/env bash
2
397c4fed
IB
3echo "[+] Running the linter"
4make lint
6a2114b7 5output=$?
397c4fed 6
6a2114b7
IB
7if [ "$output" = 1 ]; then
8 exit 1
9else
10 exit 0
11fi