Skip to content

Commit

Permalink
Pin goopack version
Browse files Browse the repository at this point in the history
The latest version of goopack (v2.20.0) has an issue with path separators, so pin to the newest working version instead (v2.18.4).

See google/googet#83 (comment).
  • Loading branch information
jefferbrecht authored Dec 11, 2024
1 parent 5849371 commit 08ba978
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ RUN Start-Process msiexec.exe `
# Run these in a directory with a go.mod file so that "go get" doesn't need
# a working Git installation.
WORKDIR /goget
RUN go install github.com/google/googet/v2/goopack@latest;

# @latest has an issue with path separators, so pin to an older version for now.
# https://github.com/google/googet/issues/83#issuecomment-2536975624
RUN go install github.com/google/googet/v2/[email protected];

###############################################################################
# Build fluent-bit
Expand Down

0 comments on commit 08ba978

Please sign in to comment.