Skip to content

Commit f480d24

Browse files
Update default node location for v8.x
Signed-off-by: Matthew Wilson <[email protected]>
1 parent 0b36ca0 commit f480d24

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

__tests__/api/BundlePush/BundlePusher.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ describe("BundlePusher01", () => {
922922
});
923923

924924
await runPushTestWithError("__tests__/__resources__/ExampleBundle01", false,
925-
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/IBM/node-latest-os390-s390x/bin\" " +
925+
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/v8r0/IBM/node-latest-os390-s390x/bin\" " +
926926
"&& npm install' in remote directory '/u/ThisDoesNotExist/12345678'. " +
927927
"Problem is: The output from the remote command implied that an error occurred, return code 1.");
928928

@@ -955,7 +955,7 @@ describe("BundlePusher01", () => {
955955
});
956956

957957
await runPushTestWithError("__tests__/__resources__/ExampleBundle01", false,
958-
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/IBM/node-latest-os390-s390x/bin\" " +
958+
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/v8r0/IBM/node-latest-os390-s390x/bin\" " +
959959
"&& npm install' in remote directory '/u/ThisDoesNotExist/12345678'. " +
960960
"Problem is: The output from the remote command implied that an error occurred, return code 1.");
961961

@@ -988,7 +988,7 @@ describe("BundlePusher01", () => {
988988
});
989989

990990
await runPushTestWithError("__tests__/__resources__/ExampleBundle01", false,
991-
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/IBM/node-latest-os390-s390x/bin\" " +
991+
"A problem occurred attempting to run 'export PATH=\"$PATH:/usr/lpp/IBM/cnj/v8r0/IBM/node-latest-os390-s390x/bin\" " +
992992
"&& npm install' in remote directory '/u/ThisDoesNotExist/12345678'. " +
993993
"Problem is: The output from the remote command implied that an error occurred, return code 1.");
994994

src/api/BundlePush/BundlePusher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class BundlePusher {
3636
private path = require("path");
3737
private fs = require("fs");
3838
private progressBar: ITaskWithStatus;
39-
private defaultRemoteNodehomeCmd = "export PATH=\"$PATH:/usr/lpp/IBM/cnj/IBM/node-latest-os390-s390x/bin\"";
39+
private defaultRemoteNodehomeCmd = "export PATH=\"$PATH:/usr/lpp/IBM/cnj/v8r0/IBM/node-latest-os390-s390x/bin\"";
4040

4141
/**
4242
* Constructor for a BundlePusher.

0 commit comments

Comments
 (0)