Skip to content

Commit

Permalink
refac: change start command for contracts only package
Browse files Browse the repository at this point in the history
  • Loading branch information
EjembiEmmanuel committed Nov 22, 2024
1 parent 22816a7 commit 8e73333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,6 @@ const installPackage = async () => {
await exec(
`npm run install --scarb-version=${tool_versions.scarb} --legacy-peer-deps`
);

// await exec("npm run install-tools");
} else if (packageType !== "contract_only") {
await exec("npm run install --legacy-peer-deps");
}
Expand All @@ -194,6 +192,8 @@ const installPackage = async () => {

if (packageType == "kakarot") {
console.log(` npm run start-kakarot`);
} else if (packageType == "contract_only") {
console.log(` npm run devnet`);
} else {
console.log(` npm run start`);
}
Expand Down

0 comments on commit 8e73333

Please sign in to comment.