aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-runhooks
diff options
context:
space:
mode:
authordancer <dancer>2001-10-21 05:03:21 +0000
committerdancer <dancer>2001-10-21 05:03:21 +0000
commit01bcef82028206e43e7557d1dac3702dfcac4e8d (patch)
tree9d56f2dae1b941fae933215e26b7b41a7bebdfd5 /pbuilder-runhooks
parentad34a93153021b06c56a49902c9e5831b6254a17 (diff)
downloadpbuilder-01bcef82028206e43e7557d1dac3702dfcac4e8d.tar
pbuilder-01bcef82028206e43e7557d1dac3702dfcac4e8d.tar.gz
fixing bugs related to runhooks, reported by Dale. Some serious logic disorder seems to be.
Diffstat (limited to 'pbuilder-runhooks')
-rw-r--r--pbuilder-runhooks5
1 files changed, 4 insertions, 1 deletions
diff --git a/pbuilder-runhooks b/pbuilder-runhooks
index 70cc8d7..da7cf4a 100644
--- a/pbuilder-runhooks
+++ b/pbuilder-runhooks
@@ -18,6 +18,9 @@
#
# HISTORY:
# $Log$
+# Revision 1.11 2001/10/21 05:03:21 dancer
+# fixing bugs related to runhooks, reported by Dale. Some serious logic disorder seems to be.
+#
# Revision 1.10 2001/10/12 16:56:41 dancer
# changing the error message to warning, because these messages do not stop execution
#
@@ -71,7 +74,7 @@ function loadhooks () {
fi
if [ -d "$HOOKDIR" ]; then
mkdir -p "$BUILDPLACE/tmp/hooks"
- cp -a "$HOOKDIR/*" "$BUILDPLACE/$hooks"
+ cp -a "$HOOKDIR/"* "$BUILDPLACE/$hooks"
fi
}