Permissions issues: ./reach: Permission denied #1168
TheChronicMonster
started this conversation in
General
Replies: 2 comments
-
See similar discussion: #1167 |
Beta Was this translation helpful? Give feedback.
0 replies
-
If the advice above does not resolve the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you receive a
Permission denied
error:reach: /app/tmp/out.sh: openFile: permission denied (Permission denied)
or
Likely Reach was installed in the root folder or with the
sudo
commandYou should not force this access by any means - instead,
in a terminal,
rm
the existing copy ofreach
, thencd
back to the$HOME
directorycd
$ mkdir Reach
$ curl https://docs.reach.sh/reach -o reach ; chmod +x reach
You may also need to delete all of the files in the
/tmp
directory with the prefixreach
. You probably need to do this withsudo
.Beta Was this translation helpful? Give feedback.
All reactions