mirror of
https://github.com/tfausak/witch.git
synced 2024-11-22 14:58:13 +03:00
10 lines
114 B
Bash
Executable File
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 "$@"
|