We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93618a4 commit 89d33a4Copy full SHA for 89d33a4
1 file changed
src/plugins/terminal/www/Terminal.js
@@ -91,7 +91,7 @@ const Terminal = {
91
92
if (!pidExists) return false;
93
94
- const result = await Executor.execute(`kill -0 $(cat $PREFIX/pid) 2>/dev/null && echo "true" || echo "false"`);
+ const result = await Executor.BackgroundExecutor.execute(`kill -0 $(cat $PREFIX/pid) 2>/dev/null && echo "true" || echo "false"`);
95
return String(result).toLowerCase() === "true";
96
},
97
0 commit comments