fix(build): Explicitly patch interpreter shebangs in build

This commit is contained in:
Vincent Ambo 2019-09-04 11:46:57 +01:00 committed by Vincent Ambo
parent 1cdfcbf879
commit 6c3b29943c

View file

@ -36,6 +36,7 @@ in with pkgs; buildGoPackage rec {
buildInputs = [ git ];
buildPhase = ''
cd go/src/${goPackagePath}
patchShebangs build-release.sh
./build-release.sh build
'';