Update shell.js

This commit is contained in:
Namhyeon Go 2024-07-10 19:39:45 +09:00
parent b3a4125253
commit 4c68780e87

View File

@ -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;