Skip to content

Commit

Permalink
fixup! fix: use 'main' as source image
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jan 8, 2024
1 parent 319ba1f commit 7265534
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/synthetic-chain/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { writeDockerfile } from './src/cli/dockerfileGen.js';
import { matchOneProposal, readProposals } from './src/cli/proposals.js';
import { debugTestImage, runTestImages } from './src/cli/run.js';

// The image containing all passed proposals
const baseImage = 'main';
// Tag of the agoric-3 image containing all passed proposals
const baseTag = 'main';

const { positionals, values } = parseArgs({
options: {
Expand Down Expand Up @@ -50,7 +50,7 @@ const buildImages = () => {
switch (cmd) {
case 'amend': // alias for backcompat
case 'append':
const fromTag = positionals[1] || baseImage;
const fromTag = positionals[1] || baseTag;
writeDockerfile(allProposals, fromTag);
buildImages();
break;
Expand Down

0 comments on commit 7265534

Please sign in to comment.