diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e496d5..d2d13cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,23 @@ All notable changes to this project will be documented in this file. This changelog was automatically generated using [Caretaker](https://github.com/DevelopersToolbox/caretaker) by [Wolf Software](https://github.com/WolfSoftware) -### [v0.1.3](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.2...v0.1.3) +### [Unreleased](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.3...HEAD) + +- Fixing issue #4 [`[head]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/) + +### [v0.1.2](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.1...v0.1.2) > Released on January, 6th 2022 -- Updated for further security fixes [`[head]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/) +- Updated for further security fixes [`[6f6a253]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/6f6a253155112fcac743e4a2aff0200df56c90de) -### [v0.1.2](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.1...v0.1.2) +### [v0.1.1](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.0...v0.1.1) > Released on January, 4th 2022 - Additional security fix [`[c5b29ac]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/c5b29acc99feda7e1e66b8ae405fb1778510da3e) -### [v0.1.1](https://github.com/DevelopersToolbox/ini-file-parser/compare/v0.1.0...v0.1.1) +### [v0.1.0](https://github.com/DevelopersToolbox/ini-file-parser/releases/v0.1.0) > Released on January, 3rd 2022 @@ -33,9 +37,5 @@ This changelog was automatically generated using [Caretaker](https://github.com/ - Rename tests -> demos to be more in line with other projects [`[a7ef94a]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/a7ef94a39834afc7931bb41b5071b9fed6b3d067) -### [v0.1.0](https://github.com/DevelopersToolbox/ini-file-parser/releases/v0.1.0) - -> Released on February, 18th 2021 - - The initial commit [`[1be9f73]`](https://github.com/DevelopersToolbox/ini-file-parser/commit/1be9f731866391877af53f826b5d4147fe6a7a12) diff --git a/src/ini-file-parser.sh b/src/ini-file-parser.sh index 37fbb9b..ad86005 100755 --- a/src/ini-file-parser.sh +++ b/src/ini-file-parser.sh @@ -246,7 +246,7 @@ function process_ini_file() while read -r line; do line_number=$((line_number+1)) - if [[ $line =~ ^# || -z $line ]]; then # Ignore comments / empty lines + if [[ $line =~ ^# || $line =~ ^\; || -z $line ]]; then # Ignore comments / empty lines continue; fi