fix layout
continuous-integration/drone/pr Build encountered an error Details

This commit is contained in:
SmokeyDope 2023-03-14 05:15:05 +00:00
parent 1191cda861
commit 33a7ff19a1
1 changed files with 5 additions and 1 deletions

View File

@ -84,7 +84,11 @@ remember, anything that can read environment variables and write to stdout can
be used to make CGI, as long as the server can figure out how to execute it.
##how to set a CGI script as executable
The CGI script must be marked as executable in order to actually run. To do this, run the command
The CGI script must be marked as executable in order to actually run.
To make the script executable, run this command:
```
chmod +x SCRIPT_NAME.cgi
```