diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-19 19:29:41 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-19 19:29:41 +0000 |
commit | 9b769c751ada62c7e20b6bea2b342482a3d5d12a (patch) | |
tree | f6f4900cc9d26fc72d69a9bfb273de01d7be6cb9 /ikiwiki | |
parent | 52db4a50f6423eba6d513f6a3e1ec246c14aa9de (diff) |
stupid mistakes
Diffstat (limited to 'ikiwiki')
-rwxr-xr-x | ikiwiki | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -465,12 +465,12 @@ sub rcs_commit ($$) { #{{{ # Tries to commit the page; returns undef on _success_ and # a version of the page with the rcs's conflict markers on failure. # The file is relative to the srcdir. - my $message=shift; my $file=shift; + my $message=shift; if (-d "$config{srcdir}/.svn") { # svn up to let svn merge in other changes - if (system("svn", "update", "$config{srcdir}/$file") != 0) { + if (system("svn", "update", "-quiet", "$config{srcdir}/$file") != 0) { warn("svn update failed\n"); } if (system("svn", "commit", "--quiet", "-m", @@ -478,7 +478,7 @@ sub rcs_commit ($$) { #{{{ "$config{srcdir}/$file") != 0) { warn("svn commit failed\n"); my $conflict=readfile("$config{srcdir}/$file"); - if (system("svn", "revert", "$config{srcdir}/$file") != 0) { + if (system("svn", "revert", "--quiet", "$config{srcdir}/$file") != 0) { warn("svn revert failed\n"); } return $conflict; |