add char in query

This commit is contained in:
Andrey Zimin
2024-04-15 10:39:00 +03:00
parent ad2c54649d
commit 77bcf570b4
7 changed files with 21 additions and 10 deletions

12
run.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/zsh
TEST="meson test -C build"
RUN="./build/bin/hack"
command meson compile -C build
if [[ $1 == "test" ]]; then
command $TEST
else
command $RUN
fi