[VERSION] +1 to 0.0.6.9.0
[gargantext.git] / bin / install
index b04cda6dc296fa8f06c8471681042ef42efa5c29..624c7242c50f3b3a406d95f2d491cbb540b68082 100755 (executable)
@@ -2,4 +2,11 @@
 
 #stack install --nix --profile --test --fast --no-install-ghc --skip-ghc-check
 
-env LANG=C.UTF-8 stack install --nix --test --no-install-ghc --skip-ghc-check
+if [[ $1 == "dev" ]] ;
+  then
+    echo "DEV install"
+    env LANG=C.UTF-8 stack install --nix --no-install-ghc --skip-ghc-check --no-haddock-deps
+  else
+    echo "PROD install (with documentation)" 
+    env LANG=C.UTF-8 stack install --haddock --nix --test --no-install-ghc --skip-ghc-check --no-haddock-deps
+fi