Change command-line for netscape 'cos it didn't work for Felipes version

of netscape and the new command line works for both his and mine.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3359 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-11-30 20:35:07 +00:00
parent 4022dcebf5
commit 5c39f6f65c

View file

@ -81,10 +81,9 @@
path = @"/bin/sh";
args = [NSArray arrayWithObjects:
@"-c",
[NSString stringWithFormat: @"netscape -remote \"openURL(%@)\"",
url],
nil];
@"-c",
[NSString stringWithFormat: @"netscape -remote \"openURL (%@)\"", url],
nil];
task = [NSTask launchedTaskWithLaunchPath: path
arguments: args];
}