From 7265534349088d107b6c3228849e9c2736331602 Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Mon, 8 Jan 2024 10:50:04 -0800 Subject: [PATCH] fixup! fix: use 'main' as source image --- packages/synthetic-chain/cli.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/synthetic-chain/cli.ts b/packages/synthetic-chain/cli.ts index 9816c883..828f574f 100755 --- a/packages/synthetic-chain/cli.ts +++ b/packages/synthetic-chain/cli.ts @@ -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: { @@ -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;