From 6c3b29943ccf3e8c02310036f2c61c8d4142fe80 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 4 Sep 2019 11:46:57 +0100 Subject: [PATCH] fix(build): Explicitly patch interpreter shebangs in build --- release.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/release.nix b/release.nix index 950bacc..4af08f5 100644 --- a/release.nix +++ b/release.nix @@ -36,6 +36,7 @@ in with pkgs; buildGoPackage rec { buildInputs = [ git ]; buildPhase = '' cd go/src/${goPackagePath} + patchShebangs build-release.sh ./build-release.sh build '';