witch/.devcontainer/cabal-shim.sh
2022-09-08 13:35:04 +00:00

10 lines
114 B
Bash
Executable File

#! /usr/bin/env sh
set -o errexit -o xtrace
if ! command -v "$1" >&2
then
cabal install "$1" >&2
fi
exec "$@"