From e953ec080199563ab7f461d431a7a54353e82ecd Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 5 Oct 2010 15:57:45 -0400 Subject: [PATCH] Don't pass the silent arg to dactyl.execute when sourcing files. Fixes related commandline.commandOutput calls. --- common/content/io.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/io.js b/common/content/io.js index c8ad1faa..5f4ab0db 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -386,7 +386,7 @@ lookup: if (!/^\s*(".*)?$/.test(line)) try { - dactyl.execute(line, { setFrom: file }, true); + dactyl.execute(line, { setFrom: file }); } catch (e) { dactyl.echoerr("Error detected while processing " + file.path);