From: Aric Gardner Date: Thu, 7 Jul 2016 13:42:10 +0000 (-0400) Subject: Script needs to be executable X-Git-Tag: colorado.1.0~291 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=8c758635ce4664e7c2368248ef3be4a642ebb0dd;p=releng.git Script needs to be executable Change-Id: I7559c654580c8131f6180e70475cec1ab12ffbcc Signed-off-by: Aric Gardner --- 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 "/$")