File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66
77## [ Unreleased]
88
9+ ## [ 1.0.1] - 2020-06-15
10+
11+ ### Fixed
12+ - Added missing quotes around argument when calling isIniFile.
13+
14+ ### Changed
15+ - Updated version number.
16+
917## [ 1.0.0] - 2020-06-14
1018
1119### 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.0.0
10+ set $scriptVersion = 1.0.1
1111set $scriptLogFileName = ssl_config.log
1212
1313rem WampServer sub-paths.
@@ -120,7 +120,7 @@ rem Check CLI config arg has '.ini' extension
120120rem -------------------------------------------
121121
122122rem Check if the file is an .ini file.
123- call :isIniFile !$configPath!
123+ call :isIniFile " !$configPath! "
124124
125125rem Check the result.
126126if /i " !$result! " equ " false" (
You can’t perform that action at this time.
0 commit comments