Fix mkdir for fetchgx to not throw an exception

This commit is contained in:
HeeL
2017-03-21 16:04:00 +01:00
committed by Sergii Paryzhskyi
parent 02129a8788
commit cd2627da0d
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
buildPhase = ''
export GOPATH=$(pwd)/vendor
mkdir vendor
mkdir -p vendor
gx install
'';