Skip to content

Commit 4ffe81a

Browse files
committed
save
Signed-off-by: Jeffrey Tang <[email protected]>
1 parent 05ceedf commit 4ffe81a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/core/dependency_managers/helm_dependency_manager.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ export class HelmDependencyManager extends ShellRunner {
5656
this.zippy = zippy
5757
this.installationDir = installationDir
5858
this.osPlatform = osPlatform
59+
60+
// Node.js uses 'win32' for windows in package.json os field, but helm uses 'windows'
5961
if (osPlatform === OS_WIN32) {
6062
this.osPlatform = OS_WINDOWS
6163
}

test/e2e/setup-e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SOLO_CLUSTER_NAME=solo-e2e
55
SOLO_NAMESPACE=solo-e2e
66
SOLO_CLUSTER_SETUP_NAMESPACE=solo-e2e-cluster
77
kind delete cluster -n "${SOLO_CLUSTER_NAME}" || true
8-
kind create cluster -n "${SOLO_CLUSTER_NAME}" --image "${KIND_IMAGE}" || exit 1
8+
kind create cluster -n "${SOLO_CLUSTER_NAME}" || exit 1
99
solo init --namespace "${SOLO_NAMESPACE}" -i node0,node1,node2 -t v0.42.5 -s "${SOLO_CLUSTER_SETUP_NAMESPACE}" || exit 1 # cache args for subsequent commands
1010
solo cluster setup || exit 1
1111
solo network deploy || exit 1

0 commit comments

Comments
 (0)