diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-09 21:43:23 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-09 21:43:23 -0400 |
commit | 2ba89f3528d3cd07a72bf1d1f80556d95aa83016 (patch) | |
tree | 8df31b6d14814a5b13dc5b753dcf454cbcc11822 | |
parent | 619028af0ff6c87cf2a0a85ae3118dbd7136cbe7 (diff) | |
download | pypaste-2ba89f3528d3cd07a72bf1d1f80556d95aa83016.tar.gz |
print install tree after running check.sh
-rwxr-xr-x | check.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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} |