summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auth/docker/aaf.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth/docker/aaf.sh b/auth/docker/aaf.sh
index 71197278..0512944d 100644
--- a/auth/docker/aaf.sh
+++ b/auth/docker/aaf.sh
@@ -24,7 +24,9 @@ function run_it() {
}
PARAMS="$@"
-if [ "$PARAMS" != "" ]; then
+if [ -z "$PARAMS" ]; then
+ run_it --rm
+else
run_it -it --rm
fi