diff options
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-auto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index 7a0dcac3dbc..18c1812d081 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -213,12 +213,15 @@ else fi fi +status=0 if test -z "$update_list"; then echo "$0: nothing to update." else test x"$chicken" = xecho || echo "$0: committing $update_list" $chicken svn commit --force-log -m$0 $update_list + status=$? + test $status -ne 0 && echo "$0: *** svn commit failed, fix me." >&2 fi echo "$0: done `date`." -exit 0 +exit $status |