mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
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:
parent
232a83ccb6
commit
c5dc4943f5
1 changed files with 2 additions and 1 deletions
|
@ -290,7 +290,8 @@ enum {
|
||||||
if ([project isExecutable])
|
if ([project isExecutable])
|
||||||
{
|
{
|
||||||
openPath = [project execToolName];
|
openPath = [project execToolName];
|
||||||
[args addObject:[project projectName]];
|
[args addObject: [[project projectPath]
|
||||||
|
stringByAppendingPathComponent: [project projectName]]];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue