Skip to content

Commit

Permalink
Fixing issue #4
Browse files Browse the repository at this point in the history
  • Loading branch information
TGWolf committed Oct 26, 2022
1 parent 6f6a253 commit 5f48543
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

2 changes: 1 addition & 1 deletion src/ini-file-parser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5f48543

Please sign in to comment.