Skip to content

Commit

Permalink
option to skip contract deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless0x committed May 2, 2024
1 parent 42be311 commit 7e16d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mock-alto-bundler/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ const client = createPublicClient({
});

const main = async () => {
if (process.env.FORKED_MODE) {
// skip deployments in forked mode
if (process.env.SKIP_DEPLOYMENTS) {
// used in fork mode to skip contract deployments
process.exit(0);
}

Expand Down

0 comments on commit 7e16d3d

Please sign in to comment.