Browse Source

Bugfix in README

Add missing ./ in front of src/pyfcgi
Yann Weber 4 years ago
parent
commit
b6ba480b62
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      README

+ 2
- 2
README View File

9
 	$ ./configure
9
 	$ ./configure
10
 	$ make
10
 	$ make
11
 	# To run foo_pep333.entrypoint() PEP333 application
11
 	# To run foo_pep333.entrypoint() PEP333 application
12
-	$ src/pyfcgi -l '127.0.0.1:9000' -S -e foo_pep333 -E entrypoint
12
+	$ ./src/pyfcgi -l '127.0.0.1:9000' -S -e foo_pep333 -E entrypoint
13
 or
13
 or
14
 	# To run foo.entrypoint() sending to FCGI python stdout
14
 	# To run foo.entrypoint() sending to FCGI python stdout
15
-	$ src/pyfcgi -l '127.0.0.1:9000' -S -e foo -E entrypoint -A
15
+	$ ./src/pyfcgi -l '127.0.0.1:9000' -S -e foo -E entrypoint -A
16
 
16
 
17
 
17
 
18
 configure script determine python flags, libs & includes paths using
18
 configure script determine python flags, libs & includes paths using

Loading…
Cancel
Save