Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit f6d81cf

Browse files
committedAug 3, 2020
Fix syntax error in example batch script
1 parent 5710631 commit f6d81cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎doc/phpsdk_pgo_prep_elevated.bat.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rem netsh advfirewall set allprofiles state off
1818

1919
rem NGINX
2020
netsh advfirewall firewall add rule name="NGINX for PGO" dir=in action=allow program="C:\php-snap-build\php-sdk\pgo\work\server\nginx\nginx.exe" profile=private
21-
for \l %%p in (8081, 1, 8091) do (
21+
for /l %%p in (8081, 1, 8091) do (
2222
netsh advfirewall firewall add rule name="Open Port %%p for PHP PGO" dir=in action=allow protocol=TCP localport=%%p profile=private
2323
netsh advfirewall firewall add rule name="Open Port %%p for PHP PGO" dir=in action=allow protocol=UDP localport=%%p profile=private
2424
)

0 commit comments

Comments
 (0)
This repository has been archived.