diff options
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 "/$") |