aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 6b52919c4e59a29413210f8e6f5c8f79d08a6931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh
set -e

cabal build exe:tasker

bin=$(cabal list-bin exe:tasker)

sudo install -Dm755 "$bin" /usr/local/bin/tasker
sudo install -Dm644 tasker.fish /usr/share/fish/vendor_completions.d/tasker.fish

echo "Installed $bin -> /usr/local/bin/tasker"
echo "Installed tasker.fish -> /usr/share/fish/vendor_completions.d/tasker.fish"