mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
update script to work on windows (not part of build)
This commit is contained in:
parent
286885f612
commit
c259ee68fe
@ -62,8 +62,8 @@ print "within the $rootdir directory..\n" if ($rootdir);
|
||||
# this is my lame way of checking if a command succeeded AND getting
|
||||
# output from it. I'd love a better way. -alecf@netscape.com
|
||||
my $have_checkins = 0;
|
||||
@args = ("wget", "--quiet", "--output-document=-", $url);
|
||||
open CHECKINS,"wget --quiet --output-document=- '$url'|" or
|
||||
@args = ("wget", "--quiet", "--output-document=-", "\"$url\"");
|
||||
open CHECKINS,"wget --quiet --output-document=- \"$url\"|" or
|
||||
die "Error opening wget: $!\n";
|
||||
|
||||
$header = <CHECKINS> and $have_checkins=1;
|
||||
|
Loading…
Reference in New Issue
Block a user