diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2016-07-07 09:42:10 -0400 |
---|---|---|
committer | Aric Gardner <agardner@linuxfoundation.org> | 2016-07-07 09:49:07 -0400 |
commit | 8c758635ce4664e7c2368248ef3be4a642ebb0dd (patch) | |
tree | 7f93d59bc162e6c60bb65f813ae70a098db9c191 /utils | |
parent | 7a15fe87e945549232a804e2984561dd772258ef (diff) |
Script needs to be executable
Change-Id: I7559c654580c8131f6180e70475cec1ab12ffbcc
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'utils')
-rwxr-xr-x[-rw-r--r--] | utils/retention_script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/retention_script.sh b/utils/retention_script.sh index 9a8986ca5..36dd537e9 100644..100755 --- 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 "/$") |