Skip to content

Commit

Permalink
only set app bootstrap if we have an app without a compose cache
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Jul 18, 2024
1 parent 1ef31fb commit 02ff306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lando
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ if (runtime === 4) {
// Summon the implementation of @lando/cli@3 that works with @lando/core@3
const Cli = require('../lib/cli');
const cli = new Cli(ENVPREFIX, LOGLEVELCONSOLE, USERCONFROOT, COREBASE, debug);
const bsLevel = !fs.existsSync(appConfig.composeCache) ? 'APP' : 'TASKS';
const bsLevel = !_.isEmpty(appConfig) && !fs.existsSync(appConfig.composeCache) ? 'APP' : 'TASKS';
const getTasks = require(`${COREBASE}/utils/get-tasks`);
debug('starting lando with %o runtime using cli %o', `v${runtime}`, {ENVPREFIX, LOGLEVELCONSOLE, USERCONFROOT, COREBASE});

Expand Down

0 comments on commit 02ff306

Please sign in to comment.