diff options
Diffstat (limited to 'ghc-pkg-shim.sh')
-rwxr-xr-x | ghc-pkg-shim.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ghc-pkg-shim.sh b/ghc-pkg-shim.sh index 92d7607..d00ad77 100755 --- a/ghc-pkg-shim.sh +++ b/ghc-pkg-shim.sh @@ -6,4 +6,5 @@ for arg; do args[${#args[@]}]="$arg" fi done -ghc-pkg --package-db /data/data/com.termux/files/home/ghc-boot-pkgdb "${args[@]}" +thisdir="$(dirname "$0")" +ghc-pkg --package-db "$thisdir"/ghc-boot-pkgdb "${args[@]}" |