Note to self
Sometimes I get this error on the macOS Terminal or when running my script from the CodeRunner app:
bash: /path/to/script: /usr/local/bin/node: bad interpreter: Operation not permitted
The simple fix:
xattr -d com.apple.quarantine /path/to/script
Reason:
Text editors like OSX’s TextEdit, Textastic and CodeRunner sometimes lock the file. This command fixed it.
Leave a Reply