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