views:

18

answers:

1

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.

+1  A: 

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

try: chmod +x script/server then start it again

KARASZI István