diff --git a/texlive-filesystem.changes b/texlive-filesystem.changes index fc34d63..d3f88d3 100644 --- a/texlive-filesystem.changes +++ b/texlive-filesystem.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 24 07:56:46 UTC 2017 - werner@suse.de + +- Avoid error in zypper python script + ------------------------------------------------------------------- Tue Jul 18 13:50:34 UTC 2017 - werner@suse.de diff --git a/zypplugin.in b/zypplugin.in index 886bb42..fa6914d 100644 --- a/zypplugin.in +++ b/zypplugin.in @@ -22,4 +22,7 @@ tagfile = "/var/run/texlive/run-update" if access(update, F_OK|X_OK) and path.exists(tagfile): call("VERBOSE=false " + update + " 2>&1 || :", shell=True) - remove(tagfile) + try: + remove(tagfile) + except OSError: + pass