Skip to content

Commit

Permalink
feat: remove again strict permissions for filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Nov 29, 2024
1 parent 36557eb commit c66270c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/filesystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const saveToFile = async (filePath: string, data: string) => {

// Write the file
try {
await writeFile(filePath, data, { mode: 0o600 })
await writeFile(filePath, data)
}
catch (writeError) {
handleFileSystemError('write', writeError as Error)
Expand Down

0 comments on commit c66270c

Please sign in to comment.