From 7a8f4fab0e75c5221366507bec5f1620ff4fd286 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 27 Oct 2016 11:19:37 -0400 Subject: [PATCH] dockcross: Do not output any text after container is removed See #50 --- imagefiles/dockcross | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/imagefiles/dockcross b/imagefiles/dockcross index f78b8cc..1edb446 100755 --- a/imagefiles/dockcross +++ b/imagefiles/dockcross @@ -187,9 +187,7 @@ docker run $TTY_ARGS --name $CONTAINER_NAME \ $FINAL_ARGS \ $FINAL_IMAGE "$@" -docker rm -f $CONTAINER_NAME > /dev/null && \ - echo "Successfull removed container: $CONTAINER_NAME" || \ - (echo "Failed to remove container: Ignoring error" && true) +docker rm -f $CONTAINER_NAME > /dev/null || true ################################################################################ #