instalee/handlers/make/install
2022-09-10 00:06:33 +02:00

8 lines
129 B
Bash
Executable file

#!/bin/sh -e
case $1 in
(*://*) git clone "$1"
cd "$(basename "${1%.git}")";;
(*) cd "$1";;
esac
shift
sudo checkinstall