summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-09 21:43:23 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-09 21:43:23 -0400
commit2ba89f3528d3cd07a72bf1d1f80556d95aa83016 (patch)
tree8df31b6d14814a5b13dc5b753dcf454cbcc11822
parent619028af0ff6c87cf2a0a85ae3118dbd7136cbe7 (diff)
downloadpypaste-2ba89f3528d3cd07a72bf1d1f80556d95aa83016.tar.gz
print install tree after running check.sh
-rwxr-xr-xcheck.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/check.sh b/check.sh
index daa1be9..82db69b 100755
--- a/check.sh
+++ b/check.sh
@@ -10,4 +10,8 @@ if [[ ! -d build ]]; then
meson setup build || exit $?
fi
-meson install --destdir=$(mktemp -d) -C build
+destdir=$(mktemp -d)
+
+meson install --destdir=${destdir} -C build || exit $?
+
+tree ${destdir}