diff --git a/lib/interface/cli/commands/hybrid/helper.js b/lib/interface/cli/commands/hybrid/helper.js index a52de05b1..2890c6e3a 100644 --- a/lib/interface/cli/commands/hybrid/helper.js +++ b/lib/interface/cli/commands/hybrid/helper.js @@ -394,6 +394,8 @@ async function downloadVeonona(location = CODEFRESH_PATH, bypassDownload = false } async function downloadProvider({ provider, location = CODEFRESH_PATH }, bypassDownload = false) { + const localSettings = components.gitops[provider].local; + if (await bypassDownloadSuccess(bypassDownload, localSettings.dir, localSettings.binary)) { return path.resolve(process.cwd(), INSTALLATION_DEFAULTS.COMPONENTS_FOLDER); } diff --git a/package.json b/package.json index 0ad8c9659..fc818f25e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codefresh", - "version": "0.75.14", + "version": "0.75.15", "description": "Codefresh command line utility", "main": "index.js", "preferGlobal": true,