Skip to content

Commit

Permalink
Fix go.mod. Go version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Yakunin committed Sep 18, 2024
1 parent 46d478d commit a43e63d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ DOCKER_IMG="imgpreviewer"
GIT_HASH := $(shell git log --format="%h" -n 1)

install-lint-deps:
(which golangci-lint > /dev/null) || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin
(which golangci-lint > /dev/null) || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.60.3
golangci-lint --version

lint: install-lint-deps
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/yakuninmax/imgpreviewer

go 1.22.6
go 1.22

require (
github.com/pkg/errors v0.9.1
Expand Down

0 comments on commit a43e63d

Please sign in to comment.