From 77a67deeb6c223d1e5a27dd1c6d7d3d02579a4bb Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 8 Mar 2016 22:13:40 -0700 Subject: [PATCH] Rename validate-docker-execute with .sh extension TrivialFix Change-Id: I3ad67fd802f7fe3ed7deb88eddebe520ff410a4f --- tools/cleanup-host | 2 +- tools/cleanup-images | 2 +- tools/{validate-docker-execute => validate-docker-execute.sh} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tools/{validate-docker-execute => validate-docker-execute.sh} (100%) diff --git a/tools/cleanup-host b/tools/cleanup-host index 3cc4ae23d5..18353c7b1f 100755 --- a/tools/cleanup-host +++ b/tools/cleanup-host @@ -3,7 +3,7 @@ # Move to top level directory REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')") cd "$(dirname "$REAL_PATH")/.." -. tools/validate-docker-execute +. tools/validate-docker-execute.sh # Spawning the neutron-agents container leaves artifacts on the host. # This script removes these artifacts. diff --git a/tools/cleanup-images b/tools/cleanup-images index 871afd1d1a..0650052207 100755 --- a/tools/cleanup-images +++ b/tools/cleanup-images @@ -4,7 +4,7 @@ REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')") cd "$(dirname "$REAL_PATH")/.." -. tools/validate-docker-execute +. tools/validate-docker-execute.sh IMAGES=`docker images -a -q` if [[ -z "$IMAGES" ]]; then diff --git a/tools/validate-docker-execute b/tools/validate-docker-execute.sh similarity index 100% rename from tools/validate-docker-execute rename to tools/validate-docker-execute.sh