diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-11-12 19:30:08 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-11-12 19:31:21 +0100 |
commit | 6cd81639e3c21e1e2ed8e259b6680d23658a2d5c (patch) | |
tree | a9a214982c1a29257766adf3acd33dc18d21902a /scripts | |
parent | Revert "This is bash. Prepare to be substituted." (diff) | |
download | releng-6cd81639e3c21e1e2ed8e259b6680d23658a2d5c.tar.gz releng-6cd81639e3c21e1e2ed8e259b6680d23658a2d5c.tar.bz2 releng-6cd81639e3c21e1e2ed8e259b6680d23658a2d5c.zip |
Revert "Actually remove dead txt files"
This reverts commit ebb201a6ddfac32e10c9ffdf758f1a553462d9fc.
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/copy_buildsync.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh index 0308da39..81137b43 100755 --- a/scripts/copy_buildsync.sh +++ b/scripts/copy_buildsync.sh @@ -238,10 +238,8 @@ process_arch() { done >"${_dead}" if test -s "${_dead}"; then - echo "copy_buildsync: removing dead latest*txt files:" 1>&2 - foreach txtfil in $(cat "${_dead}") ; do - rm -v "${txtfil}" 1>&2 - done + echo "copy_buildsync: dead latest*txt files to verify:" 1>&2 + cat "${_dead}" 1>&2 fi mv -f "${_dead}" "${logdir}/dead-latest-txt.txt" |