diff options
author | dancer <dancer> | 2001-11-02 18:16:18 +0000 |
---|---|---|
committer | dancer <dancer> | 2001-11-02 18:16:18 +0000 |
commit | 3da7030a1b95046457abb0d11ac46b3e4abf5bc0 (patch) | |
tree | b42f7b2b546647439a88cd0a1fb6f695d39f90dd /pbuilder-modules | |
parent | c5b6ae3059738e182f840ed7693bf2016ef79185 (diff) | |
download | pbuilder-3da7030a1b95046457abb0d11ac46b3e4abf5bc0.tar pbuilder-3da7030a1b95046457abb0d11ac46b3e4abf5bc0.tar.gz |
major updates. adding set -e and other things
Diffstat (limited to 'pbuilder-modules')
-rw-r--r-- | pbuilder-modules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-modules b/pbuilder-modules index a94a655..eae568f 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -60,7 +60,7 @@ function mountproc () { function cleanbuildplace () { if [ -d "$BUILDPLACE" ]; then - echo cleaning the build env + echo " -> cleaning the build env " rm -rf "$BUILDPLACE" fi; } @@ -73,7 +73,7 @@ function abortingfunction () { function installaptlines (){ echo Installing apt-lines - rm "$BUILDPLACE"/etc/apt/sources.list + rm -f "$BUILDPLACE"/etc/apt/sources.list test -n "$DISTRIBUTION" && ( echo "Distribution not specified, please specify" >&2 exit 1 |