Skip to content

Commit

Permalink
remove the trailing selim to be compatible with new execution
Browse files Browse the repository at this point in the history
environment
  • Loading branch information
Kevin Bad Name authored and Kevin Bad Name committed Jun 29, 2024
1 parent ebe1834 commit 4d16e94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ public void launch(File file, Button advanced) {
app=app.getParentFile();
}

run(environment,this,dir,System.err, Arrays.asList("open","-a", app.getAbsolutePath(), dir.getAbsolutePath() + delim()));
run(environment,this,dir,System.err, Arrays.asList("open","-a", app.getAbsolutePath(), dir.getAbsolutePath() ));
}else
run(environment,this,dir,System.err,Arrays.asList( eclipseEXE, dir.getAbsolutePath() + delim()));
run(environment,this,dir,System.err,Arrays.asList( eclipseEXE, dir.getAbsolutePath() ));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
Expand Down

0 comments on commit 4d16e94

Please sign in to comment.