* tests/guix-package.sh: The 'rm -rf' for clean-up inside the trap may not succeed on an NFS share, but this should not fail the test. --- tests/guix-package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/guix-package.sh b/tests/guix-package.sh index 3e5fa71d20..b1c6eeffb8 100644 --- a/tests/guix-package.sh +++ b/tests/guix-package.sh @@ -33,7 +33,7 @@ profile="t-profile-$$" tmpfile="t-guix-package-file-$$" rm -f "$profile" "$tmpfile" -trap 'rm -f "$profile" "$profile.lock" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-'"$$" EXIT +trap 'rm -f "$profile" "$profile.lock" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-'"$$"' || echo "incomplete clean-up ignored"' EXIT # Use `-e' with a non-package expression. ! guix package --bootstrap -e + -- 2.29.2
