Skip to content

Commit

Permalink
fix(graalvm): ensure read-only overlay is used for hybrid vfs.
Browse files Browse the repository at this point in the history
Signed-off-by: Dario Valdespino <[email protected]>
  • Loading branch information
darvld committed Nov 3, 2023
1 parent bf3d523 commit bf980d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ internal class HybridVfs private constructor(
// configure an in-memory vfs with the provided bundles as overlay
val inMemory = EmbeddedGuestVFSImpl.Builder.newBuilder()
.setBundlePaths(overlay)
.setReadOnly(false)
.setReadOnly(true)
.build()

// use the host fs as backing layer
Expand Down

0 comments on commit bf980d3

Please sign in to comment.