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
6
6
7
7
## [ Unreleased]
8
8
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
+
9
17
## [ 1.0.0] - 2020-06-14
10
18
11
19
### Added
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ rem INITIALISATION
7
7
rem -----------------------
8
8
rem Set default variables
9
9
rem -----------------------
10
- set $scriptVersion = 1.0.0
10
+ set $scriptVersion = 1.0.1
11
11
set $scriptLogFileName = ssl_config.log
12
12
13
13
rem WampServer sub-paths.
@@ -120,7 +120,7 @@ rem Check CLI config arg has '.ini' extension
120
120
rem -------------------------------------------
121
121
122
122
rem Check if the file is an .ini file.
123
- call :isIniFile !$configPath!
123
+ call :isIniFile " !$configPath! "
124
124
125
125
rem Check the result.
126
126
if /i " !$result! " equ " false" (
You can’t perform that action at this time.
0 commit comments