We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00e5bb5 commit bdc71eaCopy full SHA for bdc71ea
bin/lando
@@ -107,6 +107,10 @@ const cores = [
107
path.resolve(__dirname, '..'),
108
];
109
110
+if (typeof _.get(config, 'plugins.@lando/core') === 'string') {
111
+ cores.unshift(path.resolve(appConfig.root, config.plugins['@lando/core']));
112
+}
113
+
114
// if appConfig points to a different core lets set that here
115
if (typeof _.get(appConfig, 'plugins.@lando/core') === 'string') {
116
cores.unshift(path.resolve(appConfig.root, appConfig.plugins['@lando/core']));
0 commit comments