Fix mkdir for fetchgx to not throw an exception

This commit is contained in:
HeeL 2017-03-21 14:25:49 +01:00 committed by Sergii Paryzhskyi
parent 02129a8788
commit cd2627da0d

View file

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