mirror of
https://github.com/walles/moar.git
synced 2024-11-11 08:39:20 +03:00
14 lines
185 B
Bash
Executable File
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!'
|