We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40960e5 commit e6cbf0dCopy full SHA for e6cbf0d
README.md
@@ -100,7 +100,13 @@ stack build
100
cd staging
101
spago install
102
103
-stack exec trypurescript 8081 $(spago sources)
+# Below, we disable glob expansion via `set -o noglob`
104
+# to prevent 'ModuleNotFound' errors. `purs` will handle
105
+# glob expansion correctly for us. See #220 for more contxt.
106
+#
107
+# We run this in a subshell so the change doesn't persist after
108
+# running the below command
109
+(set -o noglob && stack exec trypurescript 8081 $(spago sources))
110
# should output that is is compiling the sources (first time)
111
# then: Setting phasers to stun... (port 8081) (ctrl-c to quit)
112
```
0 commit comments