From 453ccd5d14b3da50e97333fc71e5cd5de2b93084 Mon Sep 17 00:00:00 2001 From: Christopher Schnick Date: Sat, 10 Dec 2022 00:32:33 +0100 Subject: [PATCH] Shell fix for sh --- core/src/main/java/io/xpipe/core/process/ShellTypes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/xpipe/core/process/ShellTypes.java b/core/src/main/java/io/xpipe/core/process/ShellTypes.java index 4cf389c8..a3993e81 100644 --- a/core/src/main/java/io/xpipe/core/process/ShellTypes.java +++ b/core/src/main/java/io/xpipe/core/process/ShellTypes.java @@ -449,7 +449,7 @@ public class ShellTypes { @Override public String getOpenWithInitFileCommand(String file) { - return String.format("%s -i -l \"%s\"", getExecutable(), file); + return String.format("%s -i -l -c \"%s\"", getExecutable(), file); } @Override