diff --git a/apacheconfig b/apacheconfig index 2ec25dc..7472a61 100755 --- a/apacheconfig +++ b/apacheconfig @@ -162,8 +162,12 @@ fi if [ -n "$pull" ]; then estep "Mise à jour du dépôt" - [ -d "$destdir" ] || die "$destdir: répertoire introuvable" - (cd "$destdir" && git pull) || die + if [ -n "$destdir" ]; then + [ -d "$destdir" ] || die "$destdir: répertoire introuvable" + (cd "$destdir" && git pull) || die + else + git pull || die + fi fi apacheconfig_loadconf "$destdir" "$nohideconfig" || die