profoundjs 6.5.0 → 6.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
-
2
1
  "use strict";
3
2
 
4
3
  /*
@@ -133,10 +132,10 @@ exports.libraryExists = function(name) {
133
132
  let exists;
134
133
  try {
135
134
  child_process.execSync(
136
- `/usr/bin/system 'qsys/chkobj obj(${name.trim()}) objtype(*lib) aut(*none)'`,
135
+ `system 'qsys/chkobj obj(${name.trim()}) objtype(*lib) aut(*none)'`,
137
136
  {
138
- shell: "/QOpenSys/usr/bin/qsh",
139
- stdio: ["ignore", "pipe", "pipe"]
137
+ stdio: ["ignore", "pipe", "pipe"],
138
+ env: {}
140
139
  }
141
140
  );
142
141
  exists = true;
Binary file
package/setup/setup.js CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  "use strict";
3
2
 
4
3
  /*
@@ -253,8 +252,8 @@ let SILENT_MODE = false;
253
252
  log("Creating modules directory.");
254
253
  fs.mkdirSync(path.join(deployDir, "modules"));
255
254
  }
256
-
257
- // Create plugins directory.
255
+
256
+ // Create plugins directory.
258
257
  if (directoryExists(path.join(deployDir, "plugins"))) {
259
258
  log("plugins directory exists.");
260
259
  }
@@ -289,8 +288,8 @@ let SILENT_MODE = false;
289
288
  log("Creating puidnlexit.js.");
290
289
  copyFile(path.join(__dirname, "modules", "puidnlexit.js"), path.join(deployDir, "modules"), "utf8");
291
290
  }
292
-
293
- // Create mathoperation.js.
291
+
292
+ // Create mathoperation.js.
294
293
  if (fileExists(path.join(deployDir, "plugins", "mathoperation.js"))) {
295
294
  log("mathoperation.js file exists.");
296
295
  }