diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-09-20 15:27:35 -0400 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-09-20 15:27:35 -0400 |
| commit | d1474dd3b1ca82f1588c8b2123d9faf8d23f61db (patch) | |
| tree | 934d601d2d4bc70bf2717e79ea5708c054409738 | |
| parent | 5f30c41ff78330204a5b61ac363df4abee265f49 (diff) | |
| download | pypaste-d1474dd3b1ca82f1588c8b2123d9faf8d23f61db.tar.gz | |
update check.sh
| -rwxr-xr-x | check.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 $? |
