Skip to content

Commit

Permalink
Fixed scripts not running in dev mode
Browse files Browse the repository at this point in the history
This was caused by a recent change to more modules requiring a FrameworkConfig constraint. Fixes #421
  • Loading branch information
mpscholten committed Oct 1, 2020
1 parent e295a21 commit 2a06efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exe/IHP/CLI/run-script
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

echo "import IHP.ScriptSupport" >> "$GHCI_SCRIPT"
echo ":set -i." >> "$GHCI_SCRIPT"
echo ":l Application/Script/$TASK_MODULE.hs" >> "$GHCI_SCRIPT"
echo ":l Config/Config.hs Application/Script/$TASK_MODULE.hs" >> "$GHCI_SCRIPT"
echo "import qualified Application.Script.$TASK_MODULE as Script" >> "$GHCI_SCRIPT"
echo "IHP.ScriptSupport.runScript Script.run" >> "$GHCI_SCRIPT"
echo ":quit" >> "$GHCI_SCRIPT"
Expand Down

0 comments on commit 2a06efe

Please sign in to comment.