File tree Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66
77## [ Unreleased]
88
9+ ## [ 1.2.2] - 2022-04-05
10+
11+ ### Fixed
12+ - Ignore modules_sup folder in bin\apache directory (new to WampServer 3.2.8)
13+
914## [ 1.2.1] - 2021-03-11
1015
1116### Added
@@ -24,9 +29,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
2429### Fixed
2530- Added .gitattributes file to normalize EOL's for Windows OS when code is downloaded as ZIP file.
2631
27- ### Changed
28- - Updated version number.
29-
3032## [ 1.1.0] - 2020-06-22
3133
3234### Added
@@ -38,17 +40,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
3840- Moved CLI argument count code (0 & >2) to a more logical section in ssl_config.bat
3941- Fixed grammatical errors and general formatting in README.md
4042
41- ### Changed
42- - Updated version number.
43-
4443## [ 1.0.1] - 2020-06-15
4544
4645### Fixed
4746- Added missing quotes around argument when calling isIniFile.
4847
49- ### Changed
50- - Updated version number.
51-
5248## [ 1.0.0] - 2020-06-14
5349
5450### Added
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ rem INITIALISATION
77rem -----------------------
88rem Set default variables
99rem -----------------------
10- set $scriptVersion = 1.2.1
10+ set $scriptVersion = 1.2.2
1111set $scriptLogFileName = ssl_config.log
1212
1313rem WampServer sub-paths.
@@ -266,11 +266,13 @@ for /f "delims=" %%a in ('dir %$config[wampServerInstallPath]%\%$subPathToApache
266266 rem Get version path
267267 rem ------------------
268268
269- set /A $totalApacheVersionsInstalled = $totalApacheVersionsInstalled+ 1
270- rem Set the Apache version folder path to the array.
271- set $installedApacheVersionsArray[!$totalApacheVersionsInstalled!] = %%a
272- set $installedApacheVersionPathsArray[!$totalApacheVersionsInstalled!] = %$config[wampServerInstallPath]% \%$subPathToApacheFolders% \%%a
273- call :logToBoth " '%%a '"
269+ if " %%a " neq " modules_sup" (
270+ set /A $totalApacheVersionsInstalled = $totalApacheVersionsInstalled+ 1
271+ rem Set the Apache version folder path to the array.
272+ set $installedApacheVersionsArray[!$totalApacheVersionsInstalled!] = %%a
273+ set $installedApacheVersionPathsArray[!$totalApacheVersionsInstalled!] = %$config[wampServerInstallPath]% \%$subPathToApacheFolders% \%%a
274+ call :logToBoth " '%%a '"
275+ )
274276)
275277
276278
You can’t perform that action at this time.
0 commit comments