From d51959dfd81e63a2194a1ca7411a4643c7e5473e Mon Sep 17 00:00:00 2001 From: Filip Gralinski Date: Mon, 9 Apr 2018 11:38:34 +0200 Subject: [PATCH] fix how-to --- templates/challenge-how-to.hamlet | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/challenge-how-to.hamlet b/templates/challenge-how-to.hamlet index bb15520..cf75b8b 100644 --- a/templates/challenge-how-to.hamlet +++ b/templates/challenge-how-to.hamlet @@ -2,6 +2,8 @@

Install GEval (recommended, but not obligatory) +

option A — install GEval with Haskell Stack (needs some time and a couple of gigabytes of hard disk space) +

In order to evaluate your work locally, you need the GEval tool. First, install Haskell Stack:

@@ -14,11 +16,14 @@
   cd geval
   stack setup
   stack install
+  ~/.local/bin/geval --help
 
-

Haskell Stack requires some time when run for the first time, also it takes a couple of gigabytes of hard disk space. If this is a problem for you, another option is to just download the GEval binary (it should work on most 64-bit Linuxes): +

option B — just download the GEval binary (simpler if you have a standard 64-bit Linux)
   wget http://filipg-jenkins.wmi.amu.edu.pl:8090/job/geval/lastSuccessfulBuild/artifact/geval/geval
+  chmod u+x geval
+  ./geval --help
 
 

(GEval will make your life easier, but is not obligatory, so if you have any trouble with installing/running GEval, you can skip this step, for the time being.)