Skip to content

Commit

Permalink
Ignore numaflow pacakge install incase when installing cloud packages
Browse files Browse the repository at this point in the history
  • Loading branch information
firecast committed Dec 9, 2023
1 parent fff3326 commit d96ff2c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/local-install.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,10 @@ async function run(packageName, azureArtifacts, extraArgs, channel) {

// Always install numaflow packages since delete-pipelines may have deleted them
const numaflowPackages = Object.values(packagesMap).filter((pkg) => pkg.isNumaflowPackage);
console.log("Numaflow packages to install: " + numaflowPackages.map((pkg) => pkg.name).join(", "));

installPackages(numaflowPackages, extraArgs, azureArtifacts);
if (packageName != "@atlan/cloud-packages") {
console.log("Numaflow packages to install: " + numaflowPackages.map((pkg) => pkg.name).join(", "));
installPackages(numaflowPackages, extraArgs, azureArtifacts);
}

var safeToInstall = true;
if (!ignoreSafetyCheck(packageName) && channel == "master") {
Expand Down

0 comments on commit d96ff2c

Please sign in to comment.