Skip to content

Commit

Permalink
fix: Don't double-escape extra Flatpak packages
Browse files Browse the repository at this point in the history
Signed-off-by: Felicitas Pojtinger <felicitas@pojtinger.com>
  • Loading branch information
pojntfx committed Oct 10, 2024
1 parent 584d872 commit 369c576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydrapp/pkg/builders/flatpak/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func (b *Builder) Build() error {

references := []string{}
for _, reference := range b.references {
references = append(references, `"`+reference.Name+"//"+reference.Version+`"`)
references = append(references, reference.Name+"//"+reference.Version)
}

return executors.DockerRunImage(
Expand Down

0 comments on commit 369c576

Please sign in to comment.