Use stack to run gencss (clay pre-processed css)

Signed-off-by: Collin J. Doering <collin@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2018-12-08 17:56:14 -05:00
parent 1f7c01b31f
commit c053c6a3ed
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 3 additions and 3 deletions

View File

@ -140,12 +140,12 @@ main = do
rulesExtraDependencies [clayDeps] $ create ["default.css"] $ do
route idRoute
compile $ makeItem =<< (unsafeCompiler $ do
(_, hout, _, ph) <- createProcess $ shell "cabal build gencss"
(_, hout, _, ph) <- createProcess $ shell "stack build blog-rekahsoft-ca:gencss"
exitCode <- waitForProcess ph
if exitCode == ExitSuccess
then readProcess "cabal" ["run", "--verbose=0", "gencss", "compact"] ""
then readProcess "stack" ["exec", "gencss", "--", "compact"] ""
else case hout of
Nothing -> fail "Error running 'cabal build gencss'"
Nothing -> fail "Error running 'stack build blog-rekahsoft-ca:gencss'"
Just hout' -> hGetContents hout' >>= fail)
rulesExtraDependencies [manifestDeps] $ create ["manifest.appcache"] $ do