diff options
scripting: only if filter is blank should we fully remove target
Diffstat (limited to 'build-repo')
-rwxr-xr-x | build-repo | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ set -eax # note: we assume `abuild-keygen -a -i` has alr been run ALL_TARGET="$PWD/target" -rm -rf "$ALL_TARGET" +if [[ "$FILTER" == "" ]]; then rm -rf "$ALL_TARGET"; fi mkdir -p "$ALL_TARGET" export APORTSDIR="$PWD/src" for REPOPATH in ./src/*; do |