This is an automated email from the ASF dual-hosted git repository. radu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-tooling-release.git
commit 3f304fe92bcb74ba15c8ebaf770b0b80757e4078 Author: Robert Munteanu <[email protected]> AuthorDate: Tue Aug 14 18:03:20 2018 +0200 check_staged_release: reject index.html.tmp For some time I noticed that wget places index.html.tmp files in the download directory. These are useless and show be rejected. --- check_staged_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_staged_release.sh b/check_staged_release.sh index 02a9c41..ca2c4d8 100755 --- a/check_staged_release.sh +++ b/check_staged_release.sh @@ -16,7 +16,7 @@ then echo " DOWNLOAD STAGED REPOSITORY " echo "################################################################################" - wget -e "robots=off" --wait 1 -nv -r -np "--reject=html" "--follow-tags=" \ + wget -e "robots=off" --wait 1 -nv -r -np "--reject=html,index.html.tmp" "--follow-tags=" \ -P "${DOWNLOAD}/${STAGING}" -nH "--cut-dirs=3" \ "https://repository.apache.org/content/repositories/orgapachesling-${STAGING}/org/apache/sling/"
