1
1
mirror of https://github.com/walles/moar.git synced 2024-09-11 12:15:43 +03:00
moar/install.sh

14 lines
185 B
Bash
Raw Normal View History

2019-07-07 19:44:08 +03:00
#!/bin/bash
set -e -o pipefail
./test.sh
echo
2019-07-08 09:58:53 +03:00
echo 'Installing into /usr/local/bin...'
2019-07-07 19:44:08 +03:00
cp moar /usr/local/bin/moar
2019-07-08 09:58:53 +03:00
echo
echo 'Installed, try "moar moar.go" to see moar in action!'