fix bug I introduced

master
Joey Hess 2009-04-04 18:30:29 -04:00
parent ca32dd31de
commit 01b063d2e2
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ sub rcs_commit ($$$;$$) {
# Update the repository by pulling from the default repository, which is
# master repository.
silentsystem('darcs', "pull", "--quiet", "--repodir", $config{srcdir},
"--all") !=0 || error("'darcs pull' failed");
"--all") == 0 || error("'darcs pull' failed");
# If this updating yields any conflicts, we'll record them now to resolve
# them. If nothing is recorded, there are no conflicts.