mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 09:00:26 +00:00
Fix file execute action not launching script
This commit is contained in:
parent
dbec0b8fd7
commit
795b00eb8a
1 changed files with 1 additions and 1 deletions
|
@ -65,6 +65,6 @@ public class RunAction extends MultiExecuteAction {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String createCommand(ShellControl sc, OpenFileSystemModel model, BrowserEntry entry) {
|
protected String createCommand(ShellControl sc, OpenFileSystemModel model, BrowserEntry entry) {
|
||||||
return sc.getShellDialect().runScriptCommand(sc, entry.getFileName());
|
return sc.getShellDialect().runScriptCommand(sc, entry.getRawFileEntry().getPath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue