From 4c68780e875789af3f7432f078a2e598210f1579 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 10 Jul 2024 19:39:45 +0900 Subject: [PATCH] Update shell.js --- lib/shell.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/shell.js b/lib/shell.js index 6a8212f..bfb76aa 100644 --- a/lib/shell.js +++ b/lib/shell.js @@ -55,7 +55,7 @@ var ShellObject = function() { this.build = function(cmd) { var wrap = function(s) { - return this.target != null ? [this.target, s].join(' ') : s; + return this.prefix != null ? [this.prefix, s].join(' ') : s; }; if (typeof(cmd) === "string") { @@ -221,7 +221,7 @@ exports.getPathOfMyDocuments = function() { exports.CdoCharset = PipeIPC.CdoCharset; -exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.11"; +exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.12"; exports.AUTHOR = "abuse@catswords.net"; exports.global = global; exports.require = global.require;