mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
15 lines
402 B
Bash
Executable File
15 lines
402 B
Bash
Executable File
#!/bin/sh
|
|
# Compile all add-on scripts in this directory.
|
|
# Keep synced: compile.sh, scripts*.test, hledger-*.hs ...
|
|
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
echo "building hledger libraries for scripts"
|
|
stack build hledger
|
|
|
|
echo "installing extra libraries for scripts"
|
|
stack install string-qq microlens
|
|
|
|
echo "compiling the hledger-* scripts"
|
|
for f in `git ls-files 'hledger-*.hs'`; do stack ghc -- "$f"; done
|