This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit d8cea8feb90874620bbaff598c6c8d844f803938 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Apr 1 10:17:10 2015 +0200 bin/build-rpm-package: ignore errors when removing temporary mock config files in cleanup(). --- bin/build-rpm-package | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index a034ce1..be686c9 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -83,7 +83,8 @@ cleanup () { if [ ! -f "${file}" ]; then echo "Warning: mock temporary config file ${file} is not a regular file. Not unlinking." >&2 else - rm "${TMP_MOCK_CFG_DIR}/*" + # Remove and ignore errors. + rm "${TMP_MOCK_CFG_DIR}/${file}" || : fi done -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git