summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-11-02 13:12:33 -0500
committerInstrumental <jonathan.gathman@att.com>2018-11-02 13:17:30 -0500
commit5ccce038286f0629be14fc7530d7bcd218d00616 (patch)
treeb0265b7ff9623f1effdd19814b6ca74822caa2a1
parentadb726667621bafb2078564bc62eeff90c56657b (diff)
More no-TTY
Issue-ID: AAF-603 Change-Id: I11893756d7659dbbb40518fe8e665c7d434dd682 Signed-off-by: Instrumental <jonathan.gathman@att.com>
-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