mirror of
https://github.com/walles/moar.git
synced 2024-11-13 11:14:30 +03:00
16 lines
201 B
Bash
Executable File
16 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build pager and run it, this script should behave just
|
|
# like the binary.
|
|
|
|
set -e -o pipefail
|
|
|
|
MYDIR="$(cd "$(dirname "$0")"; pwd)"
|
|
cd "$MYDIR"
|
|
|
|
rm -f moar
|
|
|
|
./build.sh 1>&2
|
|
|
|
./moar "$@"
|