From 8933a9d46a4bdc824568d68accdcf9f0a99bbe24 Mon Sep 17 00:00:00 2001 From: magikcypress Date: Fri, 3 Mar 2017 13:26:18 +0100 Subject: [PATCH] set -eu sur le fichier d'install --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index 3068084..7a45a52 100644 --- a/scripts/install +++ b/scripts/install @@ -1,5 +1,10 @@ #!/bin/bash +#================================================= +# Exit on command errors and treat unset variables as an error +#================================================= +set -eu + #================================================= # GENERIC STARTING #=================================================