Skip to content

Commit 467a61e

Browse files
author
Prince Rachit Sinha
committed
fix for loop
1 parent af9728b commit 467a61e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.werft/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ export async function deployToDev(deploymentConfig: DeploymentConfig, workspaceF
298298
try {
299299
if (deploymentConfig.cleanSlateDeployment) {
300300
// re-create namespace
301-
for (const pathToKubeConfig in [""]) {
301+
for (let pathToKubeConfig of [""]) {
302302
await cleanStateEnv(pathToKubeConfig);
303303
}
304304

305305
} else {
306-
for (const pathToKubeConfig in [""]) {
306+
for (let pathToKubeConfig of [""]) {
307307
createNamespace(pathToKubeConfig, namespace, { slice: 'prep' });
308308
}
309309
}

0 commit comments

Comments
 (0)