Skip to content

Commit

Permalink
fix: actually use sdk_name
Browse files Browse the repository at this point in the history
Signed-off-by: Carsten Munk <[email protected]>
  • Loading branch information
stskeeps committed Jul 11, 2024
1 parent e9adc2b commit d8582a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/long-ligers-perform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cartesi/cli": patch
---

fix: actually use sdk_name
2 changes: 1 addition & 1 deletion apps/cli/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Update your application Dockerfile using one of the templates at https://github.
const imageInfo = await this.getImageInfo(appImage);

// resolve sdk version
const sdkImage = `cartesi/sdk:${imageInfo.sdkVersion}`;
const sdkImage = `${imageInfo.sdkName}:${imageInfo.sdkVersion}`;

try {
// create docker tarball for image specified
Expand Down

0 comments on commit d8582a5

Please sign in to comment.