Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Problems - Error: EACCES: permission denied, open '{path}' # Solution - From: https://stackoverflow.com/a/34721366 - The documentation states that the default is 0777 & (~process.umask()) which means that your umask value is "subtracted" from the 0777. Since the umask commonly is 002 or 022, you end up with 0775 or 0755. - To prevent that, you need to clear the umask (process.umask(0))
- Loading branch information