]> git.immae.eu Git - perso/Immae/Config/Ansible.git/blame - 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
CommitLineData
397c4fed
IB
1#!/usr/bin/env bash
2
397c4fed 3echo "[+] Running the linter"
bf4da466 4make -q lint
6a2114b7 5output=$?
397c4fed 6
bf4da466 7if [ "$output" = "2" ]; then
6a2114b7 8 exit 0
bf4da466
IB
9else
10 make lint
6a2114b7 11fi