Currently the lockfile generation sandbox does not spawn a separate process, thus enabling the sandbox for the calling process directly. Since extensions might be doing other things after generating the lockfile for a manifest, this could prevent them from operating correctly.
This patch removes the sandboxing for lockfile generation when calling parseLockfile from an extension. In the future it should be possible to enable this again by spawning a separate process for lockfile generation.
Currently the lockfile generation sandbox does not spawn a separate process, thus enabling the sandbox for the calling process directly. Since extensions might be doing other things after generating the lockfile for a manifest, this could prevent them from operating correctly.
This patch removes the sandboxing for lockfile generation when calling
parseLockfile
from an extension. In the future it should be possible to enable this again by spawning a separate process for lockfile generation.