[SCM] Debian Live build scripts branch, master, updated. 1.0.1-3-1-g1dcd8ac
Daniel Baumann
daniel at debian.org
Thu Nov 27 17:33:20 UTC 2008
The following commit has been merged in the master branch:
commit 1dcd8ac311f76285baa9674639ad52522e878482
Author: Daniel Baumann <daniel at debian.org>
Date: Thu Nov 27 18:31:05 2008 +0100
Don't attempt to remove scripts directory in lh_clean if it doesn't exist.
diff --git a/helpers/lh_clean b/helpers/lh_clean
index e037ea8..ab104b4 100755
--- a/helpers/lh_clean
+++ b/helpers/lh_clean
@@ -52,7 +52,11 @@ do
"${0}" --binary
"${0}" --stage
"${0}" --source
- rmdir --ignore-fail-on-non-empty scripts
+
+ if [ -d scripts ]
+ then
+ rmdir --ignore-fail-on-non-empty scripts
+ fi
;;
--cache)
--
Debian Live build scripts
More information about the debian-live-changes
mailing list