1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-28 15:45:46 +01:00

Fixed :!echo $PATH

This commit is contained in:
Ted Pavlic
2008-12-11 16:05:51 -05:00
parent 0f330b3a15
commit 448b93a9b9

View File

@@ -715,7 +715,7 @@ lookup:
{ {
liberator.echomsg("Calling shell to execute: " + command, 4); liberator.echomsg("Calling shell to execute: " + command, 4);
function escape(str) '"' + str.replace(/[\\"$]/g, "\\$1") + '"'; function escape(str) '"' + str.replace(/([\\"$])/g, "\\$1") + '"';
let stdoutFile = ioManager.createTempFile(); let stdoutFile = ioManager.createTempFile();
let stderrFile = ioManager.createTempFile(); let stderrFile = ioManager.createTempFile();