File tree 1 file changed +3
-4
lines changed 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -313,13 +313,12 @@ export class NodeCommand extends BaseCommand {
313
313
}
314
314
315
315
async initializeSetup ( config , configManager , k8 ) {
316
- const cacheDir = validatePath ( config . cacheDir )
317
316
// compute other config parameters
318
317
config . releasePrefix = Templates . prepareReleasePrefix ( config . releaseTag )
319
- config . buildZipFile = `${ cacheDir } /${ config . releasePrefix } /build-${ config . releaseTag } .zip`
320
- config . keysDir = path . join ( cacheDir , 'keys' )
318
+ config . buildZipFile = `${ config . cacheDir } /${ config . releasePrefix } /build-${ config . releaseTag } .zip`
319
+ config . keysDir = path . join ( validatePath ( config . cacheDir ) , 'keys' )
321
320
config . stagingDir = Templates . renderStagingDir ( configManager , flags )
322
- config . stagingKeysDir = path . join ( config . stagingDir , 'keys' )
321
+ config . stagingKeysDir = path . join ( validatePath ( config . stagingDir ) , 'keys' )
323
322
324
323
if ( ! await k8 . hasNamespace ( config . namespace ) ) {
325
324
throw new FullstackTestingError ( `namespace ${ config . namespace } does not exist` )
You can’t perform that action at this time.
0 commit comments