diff options
author | EuAndreh <eu@euandre.org> | 2023-04-16 06:29:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-16 06:29:25 -0300 |
commit | b9ec1059b2fccdcbbfbee2ad41a370f31ae2c5a4 (patch) | |
tree | 386a942121c66bdaafef51cdf8c9357db5056a3c /src | |
parent | WIP Git Guix shell (diff) | |
download | server-b9ec1059b2fccdcbbfbee2ad41a370f31ae2c5a4.tar.gz server-b9ec1059b2fccdcbbfbee2ad41a370f31ae2c5a4.tar.xz |
gc.sh: Add "-v" to gc_deploy
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show b9ec1059b2fccdcbbfbee2ad41a370f31ae2c5a4
git notes --ref=refs/notes/ci-data show b9ec1059b2fccdcbbfbee2ad41a370f31ae2c5a4
Exit status: 0
Duration: 25
Diffstat (limited to 'src')
-rwxr-xr-x | src/infrastructure/scripts/gc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infrastructure/scripts/gc.sh b/src/infrastructure/scripts/gc.sh index c642627..7f44626 100755 --- a/src/infrastructure/scripts/gc.sh +++ b/src/infrastructure/scripts/gc.sh @@ -100,7 +100,7 @@ gc_deploy() { ! -path /opt/deploy -prune \ -type d \ -not -name "$(today)*" \ - -exec rm -rf "{}" ';' + -exec rm -rvf "{}" ';' } gc_trash() { |