From 1b16f4aa5b3d9ce286f27e2f4410b012877dc6e8 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Wed, 28 May 2025 18:36:39 +0200 Subject: [PATCH] Add specific versions to go get --- srcs/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcs/Makefile b/srcs/Makefile index 260bede..8ed7265 100644 --- a/srcs/Makefile +++ b/srcs/Makefile @@ -32,11 +32,11 @@ run: $(GOBUILD) -o $(BINARY_NAME) -v ./$(BINARY_NAME) deps: - $(GOGET) github.com/fatih/color - $(GOGET) github.com/akamensky/argparse + $(GOGET) github.com/fatih/color@v1.12.0 + $(GOGET) github.com/akamensky/argparse@v1.3.2 $(GOGET) github.com/awalterschulze/gographviz $(GOGET) github.com/sergi/go-diff/... - $(GOGET) github.com/AlecAivazis/survey + $(GOGET) github.com/AlecAivazis/survey@v2.3.2 # Cross compilation build-linux: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 $(GOBUILD) -o $(BINARY_UNIX) -v