]> git.immae.eu Git - perso/Immae/Config/Ansible.git/blob - roles/git/files/config_files/git/templates_fretlink/hooks/pre-push
Fix a few strings and configurations, and add a fl_restoreDump script
[perso/Immae/Config/Ansible.git] / roles / git / files / config_files / git / templates_fretlink / hooks / pre-push
1 #!/usr/bin/env bash
2
3 echo "[+] Running the linter"
4 make -q lint
5 output=$?
6
7 if [ "$output" = "2" ]; then
8 exit 0
9 else
10 make lint
11 fi