Reviewed by Tim H.
* Scripts/update-webkit: Make this return non-zero when svn fails.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13837
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-04-12 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by Tim H.
+
+ * Scripts/update-webkit: Make this return non-zero when svn fails.
+
2006-04-10 Alexey Proskuryakov <ap@nypop.com>
Reviewed by Darin.
chdirWebKit();
print "Updating OpenSource\n" unless $quiet;
-system "svn $svnoptions up";
+(system("svn $svnoptions up") == 0) or die;
if (-x "../Internal") {
chdir("../Internal");
print "Updating Internal\n" unless $quiet;
- system "svn $svnoptions up";
+ (system("svn $svnoptions up") == 0) or die;
}