I am trying to overwrite a file on a Mac file server using:
gulp.dest('DESTINATIONPATH')
Mistake:
Error: EACCES, chmod 'FILEPATH'
at Error (native)
The file path returns the path to the file that I want to overwrite.
I already tried gulp -chmod, but since this only applies to the source file that I actually want to copy, it does not affect the file I want to overwrite.
As the creator of the file I want to overwrite, it works from my Mac. But when my colleagues try to rewrite, they get an error.
source
share