From 1d49b0fb650b63a39583bd84494baaece01abc62 Mon Sep 17 00:00:00 2001 From: "Franky W." Date: Fri, 14 Jun 2024 11:43:10 +0200 Subject: [PATCH] Fix Makefile docker volume Point to the right folder naming --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0faacf1..3458117 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,9 @@ ifeq ($(DOCKER), true) GO=docker run --rm --volume $(shell pwd):/app --workdir /app golang:latest go GOLINT=docker run --rm --volume $(shell pwd):/app --workdir /app golangci/golangci-lint:latest golangci-lint GORELEASER=docker run --rm --privileged \ - --volume $(shell pwd):/go/src/github.com/frankywahl/allowed-signers \ + --volume $(shell pwd):/go/src/github.com/frankywahl/super_hooks \ --volume /var/run/docker.sock:/var/run/docker.sock \ - --workdir /go/src/github.com/frankywahl/allowed-signers \ + --workdir /go/src/github.com/frankywahl/super_hooks \ --env GITHUB_TOKEN=${GITHUB_TOKEN} \ --env SOURCE=${SOURCE} \ goreleaser/goreleaser