mirror of
https://github.com/walles/moar.git
synced 2024-11-30 12:42:26 +03:00
10 lines
72 B
Bash
Executable File
10 lines
72 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -o pipefail
|
|
|
|
rm -f moar
|
|
|
|
go build 1>&2
|
|
|
|
./moar "$@"
|