We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d0536 commit 8c62f66Copy full SHA for 8c62f66
src/WebJobs.Script.WebHost/Management/InstanceManager.cs
@@ -326,10 +326,10 @@ bool FileIsAny(params string[] options)
326
}
327
328
private void MountFsImage(string filePath, string scriptPath)
329
- => RunFuseMount($"squashfuse_ll '{filePath}' '{scriptPath}'", scriptPath);
+ => RunFuseMount($"squashfuse_ll -o nonempty '{filePath}' '{scriptPath}'", scriptPath);
330
331
private void MountZipFile(string filePath, string scriptPath)
332
- => RunFuseMount($"fuse-zip -r '{filePath}' '{scriptPath}'", scriptPath);
+ => RunFuseMount($"fuse-zip -o nonempty -r '{filePath}' '{scriptPath}'", scriptPath);
333
334
private void RunFuseMount(string mountCommand, string targetPath)
335
{
0 commit comments