Skip to content

Commit 5217f47

Browse files
committed
Removing set -e in configure scripts. This was only used for debugging.
This fixes #156
1 parent d8bb9d2 commit 5217f47

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

configure

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Copyright (c) 2014 nexB Inc. http://www.nexb.com/ - All rights reserved.
44
#
55

6-
set -e
76
CFG_CMD_LINE_ARGS="$@"
87

98
if [ "$1" == "" ]; then

etc/configure

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33
# Copyright (c) 2014 nexB Inc. http://www.nexb.com/ - All rights reserved.
44
#
55

6-
set -e
7-
86
ETC_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
97
ROOT_DIR="$( dirname "$ETC_DIR" )"
108

119
if [ "$1" == "--clean" ]; then
1210
echo "* Cleaning ..."
13-
cd $ROOT_DIR && rm -rf build bin lib include django_background_task.log
14-
cd $ROOT_DIR && rm -rf develop-eggs eggs parts .installed.cfg
11+
cd $ROOT_DIR && rm -rf build bin lib include dist about_code_tool.egg-info
1512
exit 0
1613
fi
1714

0 commit comments

Comments
 (0)