Skip to content

Commit

Permalink
made go install verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
damoon committed Dec 8, 2021
1 parent 971fee1 commit 46b03aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if os.environ.get('PROD', '') == '':
sync('cmd', '/app/cmd'),
sync('go.mod', '/app/go.mod'),
sync('go.sum', '/app/go.sum'),
run('go install ./cmd/wedding'),
run('go install -v ./cmd/wedding'),
]

docker_build(
Expand Down
2 changes: 1 addition & 1 deletion deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV GOOS=linux

COPY cmd cmd
COPY pkg pkg
RUN go install -ldflags="-X main.gitRef=${SOURCE_BRANCH} -X main.gitHash=${SOURCE_COMMIT}" -installsuffix cgo ./cmd/wedding
RUN go install -v -ldflags="-X main.gitRef=${SOURCE_BRANCH} -X main.gitHash=${SOURCE_COMMIT}" -installsuffix cgo ./cmd/wedding

###############################################################
FROM alpine:3.13.5 AS prod
Expand Down

0 comments on commit 46b03aa

Please sign in to comment.