Skip to content

Commit

Permalink
fix: add missing flag to GREP #8
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobrasolin committed Nov 24, 2021
1 parent 92feb59 commit 6c88909
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.2] - 2021-11-24

### Fixed

- Comments in package files are now correctly ignored.

## [1.0.1] - 2021-11-11

### Fixed
Expand All @@ -20,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First public release.

[unreleased]: https://github.com/paolobrasolin/setup-texlive-action/compare/v1.0.0...HEAD
[unreleased]: https://github.com/paolobrasolin/setup-texlive-action/compare/v1.0.2...HEAD
[1.0.2]: https://github.com/paolobrasolin/setup-texlive-action/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/paolobrasolin/setup-texlive-action/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/paolobrasolin/setup-texlive-action/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ runs:
run: |
# Install TeX Live packages (Linux or macOS)
## Read nonempty lines from packages file into an array
while IFS=\= read pkg; do TEXLIVE_PACKAGES+=($pkg); done < <(grep --invert-match '^(\s*#.*)?$' "$TEXLIVE_PACKAGES_PATH")
while IFS=\= read pkg; do TEXLIVE_PACKAGES+=($pkg); done < <(grep --invert-match --extended-regexp '^(\s*#.*)?$' "$TEXLIVE_PACKAGES_PATH")
## Use tlmgr to install the packages
tlmgr install "${TEXLIVE_PACKAGES[@]}"
Expand Down

0 comments on commit 6c88909

Please sign in to comment.