[Libreoffice-commits] online.git: docker/l10n-docker-nightly.sh

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Mon Jan 28 09:11:57 UTC 2019


 docker/l10n-docker-nightly.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4bfdda1068042b849b640dde882e9af395ba5fe1
Author:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Mon Jan 28 10:10:34 2019 +0100
Commit:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
CommitDate: Mon Jan 28 10:10:34 2019 +0100

    docker: Ignore errors when deleting instdir
    
    Building in docker, this is a volume which is undeletable
    
    Change-Id: I08c4fd87b1d7ca146f5d91c2cd26675191bd6047

diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
index 5f8069a1e..2f05863d6 100755
--- a/docker/l10n-docker-nightly.sh
+++ b/docker/l10n-docker-nightly.sh
@@ -49,7 +49,7 @@ BUILDDIR="$SRCDIR/builddir"
 mkdir -p "$BUILDDIR"
 cd "$BUILDDIR"
 
-rm -rf "$INSTDIR"
+rm -rf "$INSTDIR" || true
 mkdir -p "$INSTDIR"
 
 ##### cloning & updating #####


More information about the Libreoffice-commits mailing list