instalee/handlers/make/install
2022-07-05 11:36:39 +02:00

9 lines
145 B
Bash
Executable file

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