Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Fix broken args in acornfile #2193

Merged
merged 1 commit into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ replace (
require (
cuelang.org/go v0.6.0
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/acorn-io/aml v0.0.0-20230929222100-199a342b1b5f
github.com/acorn-io/aml v0.0.0-20230930050145-8926018e7752
github.com/acorn-io/aml/cli v0.0.0-20230929054110-b12c9629b109
github.com/acorn-io/aml/legacy v0.0.0-20230929081514-1e9f3394432e
github.com/acorn-io/baaah v0.0.0-20230831185433-be0115009281
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ github.com/ThalesIgnite/crypto11 v1.2.5 h1:1IiIIEqYmBvUYFeMnHqRft4bwf/O36jryEUpY
github.com/ThalesIgnite/crypto11 v1.2.5/go.mod h1:ILDKtnCKiQ7zRoNxcp36Y1ZR8LBPmR2E23+wTQe/MlE=
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=
github.com/acorn-io/aml v0.0.0-20230929222100-199a342b1b5f h1:GaUjNWLCbHs3YD1/T15LB7wVnmesjgJZNr/+0YTtZYE=
github.com/acorn-io/aml v0.0.0-20230929222100-199a342b1b5f/go.mod h1:I1qN++bfN+6sOV/FiACluqj2Eu5YaHOy82cTAnjLMf0=
github.com/acorn-io/aml v0.0.0-20230930050145-8926018e7752 h1:c00HLcb8WLDuLkdIfEqJBUuC16v8Jc0B/1Q+t75VYB0=
github.com/acorn-io/aml v0.0.0-20230930050145-8926018e7752/go.mod h1:I1qN++bfN+6sOV/FiACluqj2Eu5YaHOy82cTAnjLMf0=
github.com/acorn-io/aml/cli v0.0.0-20230929054110-b12c9629b109 h1:CNiK/y3JKcevLOYqcFDDGU4PWgs1Ehpxnpt63UBsYuo=
github.com/acorn-io/aml/cli v0.0.0-20230929054110-b12c9629b109/go.mod h1:x7Y6lLMTqMD65KWjgVaGem5tQP2ZeevOQiaps9epJj4=
github.com/acorn-io/aml/legacy v0.0.0-20230929081514-1e9f3394432e h1:W67DG9AcoNvBwIOR9OFUCZlSJBaHuvM2kXQ2+C6EnLk=
Expand Down
2 changes: 0 additions & 2 deletions pkg/appdefinition/appdefinition.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ func FromAppImage(appImage *v1.AppImage) (appDef *AppDefinition, err error) {
}
}

appDef.acornfileV0 = appImage.AcornfileV0

appDef = appDef.WithImageData(appImage.ImageData)
return appDef, err
}
Expand Down