We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad644bb commit eb953c6Copy full SHA for eb953c6
winhpcjs.js
@@ -1,10 +1,10 @@
1
-var hpc = require("../hpc_exec_wrapper/exec.js");
+var fs = require("fs");
2
+var path = require("path");
3
+var os = require("os");
4
+var hpc = require(path.join(__dirname, "../hpc_exec_wrapperjs/exec.js"));
5
var spawnOpts = {
6
timeout : 10000
7
};
-var fs = require("fs");
-var os = require("os");
-var path = require("path");
8
var powershell = "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe";
9
var HPCsnapIn = "Add-PSSnapIn Microsoft.HPC;";
10
// Format Powershell output as list
0 commit comments