diff options
author | tomsmeding <tom.smeding@gmail.com> | 2022-07-16 23:00:09 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2022-07-16 23:00:09 +0200 |
commit | 35a8d735cf66ac3a8867247b3f1a734af2add2ab (patch) | |
tree | 48750d56028ad39338e5cc69524b5b3deeceefaa /ghc-pkg-shim.sh |
Initial
Diffstat (limited to 'ghc-pkg-shim.sh')
-rwxr-xr-x | ghc-pkg-shim.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ghc-pkg-shim.sh b/ghc-pkg-shim.sh new file mode 100755 index 0000000..92d7607 --- /dev/null +++ b/ghc-pkg-shim.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +#echo >/dev/tty "!! ghc-pkg $*" +args=() +for arg; do + if [[ $arg != --global ]]; then + args[${#args[@]}]="$arg" + fi +done +ghc-pkg --package-db /data/data/com.termux/files/home/ghc-boot-pkgdb "${args[@]}" |