From 4b7d078a282e23633175fe1330ac11e610b0fe27 Mon Sep 17 00:00:00 2001 From: brikken Date: Wed, 17 Feb 2021 19:49:33 +0100 Subject: [PATCH] Update index.html Added package name parameter to `cabal init` since it'll fail without it (Cabal 3.2.0) ``` PS D:\User\Documents\Programming\Haskell\MiscTests\cabal> cabal init Guessing dependencies... Generating LICENSE... Warning: unknown license type, you must put a copy in LICENSE yourself. Generating Setup.hs... Generating CHANGELOG.md... Generating Main.hs... Error: no package name provided. ``` --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2308cd5..f493bac 100644 --- a/index.html +++ b/index.html @@ -72,7 +72,7 @@

Starting a new project

mkdir myproject && cd myproject
- cabal init
+ cabal init -p quickstart
cabal run