Browse Source

Bug 17717: (QA follow-up) Fix typo chdir

This test does obviously not achieve the desired result:
    [ "chdir" != "no" ]
Trivial fix.
Adding the same quotes around starting_dir (just as for Bug 19546).

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.05.x
Marcel de Rooy 6 years ago
committed by Nick Clemens
parent
commit
d4e444a01d
  1. 4
      debian/scripts/koha-foreach

4
debian/scripts/koha-foreach

@ -59,11 +59,11 @@ do
if [ "${cmd}" != "" ]; then
# Change to the instance's home dir if required
[ "chdir" != "no" ] && eval cd ~$name"-koha"
[ "$chdir" != "no" ] && eval cd ~$name"-koha"
koha-shell ${name} -c "${cmd}"
# Go back to the original dir if required
[ "chdir" != "no" ] && cd $starting_dir
[ "$chdir" != "no" ] && cd "$starting_dir"
fi
done

Loading…
Cancel
Save