summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-20 15:27:35 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-20 15:27:35 -0400
commitd1474dd3b1ca82f1588c8b2123d9faf8d23f61db (patch)
tree934d601d2d4bc70bf2717e79ea5708c054409738
parent5f30c41ff78330204a5b61ac363df4abee265f49 (diff)
downloadpypaste-d1474dd3b1ca82f1588c8b2123d9faf8d23f61db.tar.gz
update check.sh
-rwxr-xr-xcheck.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/check.sh b/check.sh
index 82ebe7c..e76bd16 100755
--- a/check.sh
+++ b/check.sh
@@ -7,11 +7,11 @@ for f in $(find pypaste -type f); do
done
if [[ ! -d build ]]; then
- meson setup build || exit $?
+ meson setup build -Dserver=enabled -Dclient=enabled|| exit $?
fi
destdir=$(mktemp -d)
-meson install --destdir=${destdir} -C build || exit $?
+meson test -C build || exit $?
-tree ${destdir}
+meson install --destdir=${destdir} -C build || exit $?