Common Bash Errors

I faced the below error, When i compiled newly added a shell script file.

sudo: ./build.sh: command not found 
make:***[copy] Error 1


I solved adding execute permissions 
Eg : chmod 755 build.sh 


Comments