I’m doing the excecises to the PS book.
I have set the excecise repo up according to chapter 2 (with ./scripts/resetSolutions.sh
and ./scripts/removeAnchors.sh
). Now I started with Chapter 3 and opened src/Data/AddressBook.purs
.
In there I find lines like:
-- This line should have been automatically deleted by resetSolutions.sh. See Chapter 2 for instructions. NOTE TO MAINTAINER: If editing `insertEntry`, remember to also update the non-anchored (and unsimplified) version of this function that is hardcoded in the book text.
Can I just ignore this? Do I need to run another script?
What should I do
1 Like
You’re welcome to just ignore it, though it will make things more cluttered with extra comments.
I’m interested in why it didn’t work however. By chance did you cd
into the scripts directory first and then run the two scripts, or run them from the root directory? And are you using Windows (git bash) or Linux?
1 Like
Thanks for chiming in @ntwilson .
I’m not sure what I did the first time, but I re-did running the scripts and then (I’m pretty sure) I executed them from the purescript-book
directory.
I was running this on RHEL 8 Linux. Additionally I am running the whole thing on Mac (Mojave) and there I get errors from ./scripts/removeAnchors.sh
:
+ set -e
++ find . -regextype posix-extended -regex '\./exercises/chapter[0-9]{1,2}/(src|test)/.*\.(purs|js)' -type f
find: -regextype: unknown primary or operator
+ FILES=
1 Like