Bugfix launching application ... provide full path for the application to

be launched rather than just hoping that openapp will find the correct one.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@22237 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2006-01-01 15:37:34 +00:00
parent 232a83ccb6
commit c5dc4943f5

View file

@ -290,7 +290,8 @@ enum {
if ([project isExecutable])
{
openPath = [project execToolName];
[args addObject:[project projectName]];
[args addObject: [[project projectPath]
stringByAppendingPathComponent: [project projectName]]];
}
else
{