Skip to content

Commit 61fe6ac

Browse files
author
Simon Prochazka
committed
chore: turn off verbose output
- verbose output was turned on by default, it is no longer needed
1 parent 9b3cdf5 commit 61fe6ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY . /app/
1313
RUN make build/docker
1414

1515
FROM alpine:3.10.2
16-
ENV FLAGS = "-v"
16+
ENV FLAGS
1717

1818
LABEL repository="https://github.com/commitsar-app/commitsar"
1919
LABEL homepage="https://github.com/commitsar-app/commitsar"

cmd/root_runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func runRoot(cmd *cobra.Command, args []string) error {
1919

2020
fmt.Print("Starting analysis of commits on branch\n")
2121

22-
gitRepo, err := history.OpenGit(".", true)
22+
gitRepo, err := history.OpenGit(".", debug)
2323

2424
if err != nil {
2525
return err

0 commit comments

Comments
 (0)