Skip to content

Commit

Permalink
Merge branch 'release/v1.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
custom-dev-tools committed Apr 5, 2022
2 parents 2949828 + 200cd5b commit 0dbf363
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
14 changes: 5 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [1.2.2] - 2022-04-05

### Fixed
- Ignore modules_sup folder in bin\apache directory (new to WampServer 3.2.8)

## [1.2.1] - 2021-03-11

### Added
Expand All @@ -24,9 +29,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
### Fixed
- Added .gitattributes file to normalize EOL's for Windows OS when code is downloaded as ZIP file.

### Changed
- Updated version number.

## [1.1.0] - 2020-06-22

### Added
Expand All @@ -38,17 +40,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- Moved CLI argument count code (0 & >2) to a more logical section in ssl_config.bat
- Fixed grammatical errors and general formatting in README.md

### Changed
- Updated version number.

## [1.0.1] - 2020-06-15

### Fixed
- Added missing quotes around argument when calling isIniFile.

### Changed
- Updated version number.

## [1.0.0] - 2020-06-14

### Added
Expand Down
14 changes: 8 additions & 6 deletions ssl_config.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ rem INITIALISATION
rem -----------------------
rem Set default variables
rem -----------------------
set $scriptVersion=1.2.1
set $scriptVersion=1.2.2
set $scriptLogFileName=ssl_config.log

rem WampServer sub-paths.
Expand Down Expand Up @@ -266,11 +266,13 @@ for /f "delims=" %%a in ('dir %$config[wampServerInstallPath]%\%$subPathToApache
rem Get version path
rem ------------------

set /A $totalApacheVersionsInstalled=$totalApacheVersionsInstalled+1
rem Set the Apache version folder path to the array.
set $installedApacheVersionsArray[!$totalApacheVersionsInstalled!]=%%a
set $installedApacheVersionPathsArray[!$totalApacheVersionsInstalled!]=%$config[wampServerInstallPath]%\%$subPathToApacheFolders%\%%a
call :logToBoth " '%%a'"
if "%%a" neq "modules_sup" (
set /A $totalApacheVersionsInstalled=$totalApacheVersionsInstalled+1
rem Set the Apache version folder path to the array.
set $installedApacheVersionsArray[!$totalApacheVersionsInstalled!]=%%a
set $installedApacheVersionPathsArray[!$totalApacheVersionsInstalled!]=%$config[wampServerInstallPath]%\%$subPathToApacheFolders%\%%a
call :logToBoth " '%%a'"
)
)


Expand Down

0 comments on commit 0dbf363

Please sign in to comment.