ben
ben

Reputation: 29777

Permission denied when running script/server

I just cloned the mini_fb_demo from Github, went into the directory and ran script/server, and got this error:

-bash: script/server: Permission denied

I've been using script/server like this for other projects for awhile, and this has never happened. What is causing this? Thanks for reading.

Upvotes: 5

Views: 4932

Answers (1)

KARASZI István
KARASZI István

Reputation: 31467

You probably don't have execute permission on script/server.

Try: chmod +x script/server then start it again.

Upvotes: 10

Related Questions