;bin: ensure required packages (string-qq) are visible (#1453)

This commit is contained in:
Simon Michael 2021-01-12 12:24:08 -08:00
parent 7bde3345b8
commit fef0e3a3bf
5 changed files with 9 additions and 11 deletions

View File

@ -13,6 +13,6 @@ $ stack --stack-yaml ../stack8.2.yaml ghc hledger-balance-as-budget.hs >/de
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-check-fancyassertions.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-check-tagfiles.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-combine-balances.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-print-location.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-smooth.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc hledger-swap-dates.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc --package string-qq hledger-print-location.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc --package string-qq hledger-smooth.hs >/dev/null || true
$ stack --stack-yaml ../stack8.2.yaml ghc --package string-qq hledger-swap-dates.hs >/dev/null || true

View File

@ -1,8 +1,7 @@
#!/usr/bin/env stack
-- stack runghc --verbosity info --package hledger
-- stack runghc --verbosity info --package hledger,string-qq
-- Run from inside the hledger source tree, or compile with compile.sh.
-- See hledger-check-fancyassertions.hs.
--package string-qq ?
{-
Quick script that adds file/line number tags to print output.

View File

@ -1,8 +1,7 @@
#!/usr/bin/env stack
-- stack runghc --verbosity info --package hledger
-- stack runghc --verbosity info --package hledger,string-qq
-- Run from inside the hledger source tree, or compile with compile.sh.
-- See hledger-check-fancyassertions.hs.
--package string-qq ?
-- This is an unfinished prototype, see https://github.com/simonmichael/hledger/issues/1171

View File

@ -1,5 +1,5 @@
#!/usr/bin/env stack
-- stack runghc --verbosity info --package hledger
-- stack runghc --verbosity info --package hledger,string-qq
-- Run from inside the hledger source tree, or compile with compile.sh.
-- See hledger-check-fancyassertions.hs.

View File

@ -13,6 +13,6 @@ $ stack ghc hledger-balance-as-budget.hs >/dev/null || true
$ stack ghc hledger-check-fancyassertions.hs >/dev/null || true
$ stack ghc hledger-check-tagfiles.hs >/dev/null || true
$ stack ghc hledger-combine-balances.hs >/dev/null || true
$ stack ghc hledger-print-location.hs >/dev/null || true
$ stack ghc hledger-smooth.hs >/dev/null || true
$ stack ghc hledger-swap-dates.hs >/dev/null || true
$ stack ghc --package string-qq hledger-print-location.hs >/dev/null || true
$ stack ghc --package string-qq hledger-smooth.hs >/dev/null || true
$ stack ghc --package string-qq hledger-swap-dates.hs >/dev/null || true