From 8c758635ce4664e7c2368248ef3be4a642ebb0dd Mon Sep 17 00:00:00 2001 From: Aric Gardner Date: Thu, 7 Jul 2016 09:42:10 -0400 Subject: Script needs to be executable Change-Id: I7559c654580c8131f6180e70475cec1ab12ffbcc Signed-off-by: Aric Gardner --- utils/retention_script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 utils/retention_script.sh (limited to 'utils/retention_script.sh') diff --git a/utils/retention_script.sh b/utils/retention_script.sh old mode 100644 new mode 100755 index 9a8986ca5..36dd537e9 --- a/utils/retention_script.sh +++ b/utils/retention_script.sh @@ -28,9 +28,9 @@ do daysold=$(($age/86400)) if [[ "$daysold" -gt "10" ]]; then - echo "$daysold Days old Deleting: $(basename $artifact)" + echo "$daysold Days old deleting: $(basename $artifact)" else - echo "$daysold Days old Retaining: $(basename $artifact)" + echo "$daysold Days old retaining: $(basename $artifact)" fi done < <(gsutil ls gs://artifacts.opnfv.org/"$x" |grep -v "/$") -- cgit 1.2.3-korg