mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 23:08:30 +01:00
10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v commenter &> /dev/null
|
|
then
|
|
echo "commenter is not installed, get it from https://github.com/bergmark/commenter"
|
|
exit 1
|
|
fi
|
|
|
|
commenter $@
|