hack/run

13 lines
163 B
Plaintext
Raw Normal View History

2022-11-07 13:01:31 +03:00
#!/bin/zsh
2022-02-28 12:44:18 +03:00
TEST="meson test -C build"
RUN="./build/bin/hack"
command meson compile -C build
if [[ $1 == "test" ]]; then
command $TEST
else
command $RUN
fi