adjust seatbelt to allow write into specific dirs under user home (#289)

This commit is contained in:
Olcan
2025-05-08 11:28:45 -07:00
committed by GitHub
parent 448a24746c
commit b59a940057
3 changed files with 9 additions and 4 deletions

View File

@@ -145,9 +145,11 @@ export async function start_sandbox(sandbox: string) {
process.env.SEATBELT_PROFILE ??= 'minimal';
const args = [
'-D',
`TARGET_DIR=${process.cwd()}`,
`TARGET_DIR=${fs.realpathSync(process.cwd())}`,
'-D',
`TMP_DIR=${fs.realpathSync(os.tmpdir())}`,
'-D',
`HOME_DIR=${fs.realpathSync(os.homedir())}`,
'-f',
new URL(
`sandbox-macos-${process.env.SEATBELT_PROFILE}.sb`,