From: Michael Prokop Date: Thu, 4 Jun 2015 12:38:34 +0000 (+0200) Subject: Fix syntax error for introduced in 91f2e990ca65aa367 X-Git-Tag: v0.71~13 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=598b19a85591ce0a059fdb092577aa2f6db99281 Fix syntax error for introduced in 91f2e990ca65aa367 --- diff --git a/grml-debootstrap b/grml-debootstrap index d783f26..2a6a6e9 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -1449,7 +1449,7 @@ execute_post_scripts() { # make sure we have $MNTPOINT available for our scripts export MNTPOINT - if [ -d "$_opt_scripts" ] || [ "$SCRIPTS" = 'yes'] ; then + if [ -d "$_opt_scripts" ] || [ "$SCRIPTS" = 'yes' ] ; then # legacy support for /etc/debootstrap/scripts/ [ -d "$_opt_scripts" ] && post_scripts="$_opt_scripts" || post_scripts="${CONFFILES}/scripts/" ewarn "Deprecation NOTE: --scripts/SCRIPTS are deprecated, please switch to --post-scripts/POST_SCRIPTS instead."