1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 09:31:16 +02:00

tryUnshareFilesystem: Ignore ENOSYS too

Fixes #10747
This commit is contained in:
John Ericson 2024-05-22 16:04:40 -04:00
parent d5fdfdc592
commit dc7615dbbb
3 changed files with 7 additions and 5 deletions

View file

@ -581,7 +581,7 @@ struct curlFileTransfer : public FileTransfer
#if __linux__
try {
unshareFilesystem();
tryUnshareFilesystem();
} catch (nix::Error & e) {
e.addTrace({}, "in download thread");
throw;