loolwsd-systemplate-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 017f82a84d6312a8692b11146ddf8d1c6fd9ddd3 Author: Andras Timar <[email protected]> Date: Fri Sep 22 17:04:29 2017 +0200 no error if systemplate dir is existing Change-Id: I10aba648688ba92150efa41449190a3ba425f03c Reviewed-on: https://gerrit.libreoffice.org/42663 Reviewed-by: Andras Timar <[email protected]> Tested-by: Andras Timar <[email protected]> diff --git a/loolwsd-systemplate-setup b/loolwsd-systemplate-setup index 1bd4bd66..8fb23552 100755 --- a/loolwsd-systemplate-setup +++ b/loolwsd-systemplate-setup @@ -9,7 +9,7 @@ INSTDIR=$2 test -d "$INSTDIR" || { echo "No such directory: $INSTDIR"; exit 1; } -mkdir $CHROOT || exit 1 +mkdir -p $CHROOT || exit 1 CHROOT=`cd $CHROOT && /bin/pwd` INSTDIR=`cd $INSTDIR && /bin/pwd` _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
