From c1a4219a5ac9f634afae695be8d6dea0e1e31059 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Fri, 2 Jun 2017 08:21:23 +0000 Subject: [PATCH] Remove extra exit 0 The exit 0 is not recommended: - If this script is forked, it will exit 0 anyway, so the exit is useless - If this script is in the same shell, it will exit current fork with no valid reason Change-Id: Id86af084e0c93856986814b14ad55c4bc8c8e613 --- leap-upgrades/run-stages.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/leap-upgrades/run-stages.sh b/leap-upgrades/run-stages.sh index 834f3656..67ec75c4 100755 --- a/leap-upgrades/run-stages.sh +++ b/leap-upgrades/run-stages.sh @@ -33,4 +33,3 @@ source re-deploy.sh echo -e "\n=====================================================" notice "All OpenStack-Ansible Leaps successful." echo -e "=====================================================\n" -exit 0