xfuture 1.9.6 → 1.9.8
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -87,7 +87,7 @@ class xFuture {
|
|
87
87
|
}
|
88
88
|
|
89
89
|
SetGlobalMode(isGlobalMode){
|
90
|
-
console.log("isGlobalMode:", isGlobalMode
|
90
|
+
console.log("isGlobalMode:", isGlobalMode);
|
91
91
|
parser.isGlobalMode = isGlobalMode;
|
92
92
|
ff.SetGlobalMode(isGlobalMode, this.workingDir);
|
93
93
|
}
|
@@ -97,7 +97,7 @@ class xFuture {
|
|
97
97
|
InstallDriver(shell_path, helper_path, workingDir){
|
98
98
|
this.driver = helper_path;
|
99
99
|
this.workingDir = workingDir;
|
100
|
-
parser.workingDir =
|
100
|
+
parser.workingDir = workingDir;
|
101
101
|
return ff.InstallDriver(shell_path, helper_path);
|
102
102
|
}
|
103
103
|
|