AE script: Fixing perl opt escaping

Change-Id: Ibd1825ca2dc4661d07e9dbcc6deca93b9679b709
This commit is contained in:
Brett Slatkin 2011-12-04 14:16:19 -08:00
parent 1272ff17e9
commit db13cfe6a1
1 changed files with 2 additions and 3 deletions

View File

@ -32,9 +32,9 @@ if ($opt_wipe) {
push @args, "--clear_datastore";
}
if ($opt_port) {
push @args, "-p $opt_port";
push @args, "-p", "$opt_port";
} else {
push @args, "-p 3179";
push @args, "-p", "3179";
}
push @args, @ARGV;
@ -43,4 +43,3 @@ push @args, "$Bin/server/go/appengine";
print "\$ @args\n";
exec(@args);