From ee4a1cd95db3fc6225fd35ed3cc8e3723e05df4a Mon Sep 17 00:00:00 2001 From: John Gebbie Date: Mon, 7 Aug 2023 22:06:13 +0100 Subject: [PATCH] install: add -buildvcs=false --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 661cfe7..3055dca 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ # ./install.sh [DESTDIR] [BINDIR] : "${DOTOOL_VERSION=$(git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 1.3)}" -go build -ldflags "-X main.Version=$DOTOOL_VERSION" || exit +go build -buildvcs=false -ldflags "-X main.Version=$DOTOOL_VERSION" || exit mkdir -p "$1/${2:-usr/local/bin}" || exit cp -v dotool dotoolc dotoold "$1/${2:-usr/local/bin}" || exit mkdir -p "$1/etc/udev/rules.d" || exit