1
1
mirror of https://github.com/walles/moar.git synced 2024-08-16 23:40:35 +03:00
moar/install.sh
2019-07-08 08:58:53 +02:00

14 lines
185 B
Bash
Executable File

#!/bin/bash
set -e -o pipefail
./test.sh
echo
echo 'Installing into /usr/local/bin...'
cp moar /usr/local/bin/moar
echo
echo 'Installed, try "moar moar.go" to see moar in action!'