From 5556c4c44e5465ab74afc3e540b774a8e87a72f2 Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Sun, 19 May 2024 23:07:35 +0200 Subject: [PATCH] chore: added nix specific build command (for package building) --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 3b4fee0..ac223bc 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,5 @@ build: - go build -C src_code/go_src/ -o cocommit \ No newline at end of file + go build -C src_code/go_src/ -o cocommit + +build-nix: + GOWORK=off go build -C src_code/go_src/ -o cocommit \ No newline at end of file