instalee/handlers/make/install

9 lines
129 B
Plaintext
Raw Permalink Normal View History

2022-07-05 09:36:39 +00:00
#!/bin/sh -e
case $1 in
2022-09-09 22:05:02 +00:00
(*://*) git clone "$1"
2022-07-05 09:36:39 +00:00
cd "$(basename "${1%.git}")";;
(*) cd "$1";;
esac
shift
2020-06-21 14:20:30 +00:00
sudo checkinstall