Skip to content

Commit

Permalink
Missed "/" from line 47 for genieacs-ext path
Browse files Browse the repository at this point in the history
I omitted the "/" on the initial commit for the SPAWN error on extensions
  • Loading branch information
gothosting authored and zaidka committed Oct 9, 2019
1 parent 209c0f7 commit 5c6d850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function run(args): Promise<{ fault: Fault; value: any }> {
jobs.set(id, resolve);

if (!processes[scriptName]) {
const p = spawn(ROOT_DIR + "bin/genieacs-ext", [scriptName], {
const p = spawn(ROOT_DIR + "/bin/genieacs-ext", [scriptName], {
stdio: ["inherit", "inherit", "inherit", "ipc"]
});
processes[scriptName] = p;
Expand Down

0 comments on commit 5c6d850

Please sign in to comment.