From 52cbcbcbde04e840bc2a2be60b4b91c1e4db2045 Mon Sep 17 00:00:00 2001 From: "mauro.giachero" Date: Thu, 22 Jan 2009 11:28:06 +0000 Subject: [PATCH] Fix directory creation. Remove a stale "exit" introduced by r354, causing sbopkg to exit whenever a new directory is created. Signed-off-by: Mauro Giachero --- src/usr/bin/sbopkg | 1 - 1 file changed, 1 deletion(-) diff --git a/src/usr/bin/sbopkg b/src/usr/bin/sbopkg index 7ba3af7..e860e73 100755 --- a/src/usr/bin/sbopkg +++ b/src/usr/bin/sbopkg @@ -108,7 +108,6 @@ ck_dir() { # sufficient permissions to create these directories. For now, # the || exit 1 will suffice. mkdir -p $1 || exit 1 - exit fi }