Skip to content

Instantly share code, notes, and snippets.

View flegall's full-sized avatar
🚢
Continuous deployer

Florent Le Gall flegall

🚢
Continuous deployer
View GitHub Profile
### Keybase proof
I hereby claim:
* I am flegall on github.
* I am flg (https://keybase.io/flg) on keybase.
* I have a public key whose fingerprint is 1D8D 83E3 56AF AF0D 547D F3D1 8C30 202B 62A7 50CD
To claim this, I am signing this object:
@flegall
flegall / git-build
Created July 3, 2015 11:08
Git build
#!/bin/bash
function alert_user {
echo "${1}"
which -s growlnotify && growlnotify `basename $0` -m "${1}"
}
function exit_ko {
alert_user "${1}"; exit 1
}