Skip to content

Commit

Permalink
Fix chip entry in pod specification (#781)
Browse files Browse the repository at this point in the history
Use the chip entry if there is no envelope entry.
  • Loading branch information
floitsch authored Aug 29, 2023
1 parent 64dd16a commit e4faea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/firmware.toit
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ get-envelope -> string
return "$local-sdk/build/$chip/firmware.envelope"

sdk-version := specification.sdk-version
envelope := specification.envelope or "esp32"
envelope := specification.envelope or specification.chip or "esp32"

url := build-envelope-url --sdk-version=sdk-version --envelope=envelope

Expand Down

0 comments on commit e4faea1

Please sign in to comment.