summaryrefslogtreecommitdiff
path: root/ucf
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@golden-gryphon.com>2013-04-24 02:06:45 -0700
committerManoj Srivastava <srivasta@golden-gryphon.com>2013-04-24 02:06:45 -0700
commit335b441bd92114a3fc0465fcf7bb7f13c6262ce9 (patch)
tree68cefbf1eac8f4ad8acf4f9dfaa59b382b9be257 /ucf
parent9f796923919c1163f08567412187ff1f1d2df381 (diff)
[upstream]: ucf: script is 'set -e', but tries to test for $?
No longer test for $? closes: Bug#633001 Signed-off-by: Manoj Srivastava <srivasta@golden-gryphon.com>
Diffstat (limited to 'ucf')
-rwxr-xr-xucf5
1 files changed, 0 insertions, 5 deletions
diff --git a/ucf b/ucf
index 14f1003..6c70599 100755
--- a/ucf
+++ b/ucf
@@ -298,11 +298,6 @@ TEMP=`getopt -a -o hs:d::D::nv -n "$progname" \
--long help,src-dir:,sum-file:,dest-dir:,debug::,DEBUG::,no-action,purge,verbose,three-way,debconf-ok,debconf-template:,state-dir: \
-- "$@"`
-if [ $? != 0 ] ; then
- echo "Error handling options.Terminating..." >&2 ;
- exit 1 ;
-fi
-
# Note the quotes around `$TEMP': they are essential!
eval set -- "$TEMP"