Skip to content

Commit

Permalink
CASMHMS-6324: Forgot semi-colon...
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlv committed Dec 21, 2024
1 parent e41c35d commit 7c2f5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ ARG ENABLE_PPROF=true

# Conditionally build with the pprof tag if profiling is enabled
RUN if [ "$ENABLE_PPROF" = "true" ]; then \
set -ex && go build -v -tags "musl pprof" -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action \
set -ex && go build -v -tags "musl pprof" -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action; \
else \
set -ex && go build -v -tags musl -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action \
set -ex && go build -v -tags musl -o /usr/local/bin/hms-firmware-action github.com/Cray-HPE/hms-firmware-action/cmd/hms-firmware-action; \
fi

### Build python base ###
Expand Down

0 comments on commit 7c2f5b5

Please sign in to comment.