[openssh-commits] [openssh] branch master updated: Also lazily unmount workspace in case of straggers.
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Mar 14 16:28:34 AEDT 2025
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new 442a4497 Also lazily unmount workspace in case of straggers.
442a4497 is described below
commit 442a44970179d70ebb62bba792699eaec978a1db
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Fri Mar 14 16:24:06 2025 +1100
Also lazily unmount workspace in case of straggers.
---
.github/workflows/upstream.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml
index 7fda517f..71885ca3 100644
--- a/.github/workflows/upstream.yml
+++ b/.github/workflows/upstream.yml
@@ -65,7 +65,9 @@ jobs:
/usr/obj/regress/usr.bin/ssh/obj/log/*
- name: unmount workspace
if: always()
- run: fusermount -u ${GITHUB_WORKSPACE} || true
+ run: |
+ fusermount -u ${GITHUB_WORKSPACE} || true
+ fusermount -z -u ${GITHUB_WORKSPACE} || true
working-directory: ${{ runner.temp }}
- name: shutdown VM
if: always()
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list