Merge pull request #24166 from HeeL/fix-mkdir-in-fetchgx

Fix mkdir for fetchgx to not throw an exception
This commit is contained in:
Jörg Thalheim 2017-03-21 17:22:58 +01:00 committed by GitHub
commit 1e1fe7840e

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation {
buildPhase = ''
export GOPATH=$(pwd)/vendor
mkdir vendor
mkdir -p vendor
gx install
'';