mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 06:54:58 +00:00
bug fix #126
This commit is contained in:
parent
6297f9689d
commit
9ae992dc89
|
@ -54,8 +54,9 @@ var ShellObject = function() {
|
|||
};
|
||||
|
||||
this.build = function(cmd) {
|
||||
var prefix = this.prefix;
|
||||
var wrap = function(s) {
|
||||
return this.prefix != null ? [this.prefix, s].join(' ') : s;
|
||||
return prefix != null ? [prefix, s].join(' ') : s;
|
||||
};
|
||||
|
||||
if (typeof(cmd) === "string") {
|
||||
|
@ -221,7 +222,7 @@ exports.getPathOfMyDocuments = function() {
|
|||
|
||||
exports.CdoCharset = PipeIPC.CdoCharset;
|
||||
|
||||
exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.12";
|
||||
exports.VERSIONINFO = "Windows Shell Interface (shell.js) version 0.3.13";
|
||||
exports.AUTHOR = "abuse@catswords.net";
|
||||
exports.global = global;
|
||||
exports.require = global.require;
|
||||
|
|
Loading…
Reference in New Issue
Block a user