mirror of https://github.com/perkeep/perkeep.git
AE script: Fixing perl opt escaping
Change-Id: Ibd1825ca2dc4661d07e9dbcc6deca93b9679b709
This commit is contained in:
parent
1272ff17e9
commit
db13cfe6a1
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue