about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-09-04T10·46+0100
committerVincent Ambo <github@tazj.in>2019-09-04T10·58+0100
commit6c3b29943ccf3e8c02310036f2c61c8d4142fe80 (patch)
treedd5fc03561b4413e4fd2b403418c498186db99ef /release.nix
parent1cdfcbf879a6b199f0b20aaccf38f8e854d6f920 (diff)
fix(build): Explicitly patch interpreter shebangs in build
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/release.nix b/release.nix
index 950bacc740..4af08f50c7 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
   '';