2
0
Fork 0

Merge pull request from hapakaien/bugfix/conditional-bash-script

fix: wrong conditional using paru
This commit is contained in:
Ahmad Husen 2022-05-15 13:54:13 +07:00 committed by GitHub
commit cf8509924b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Fixed
- Wrong conditional using paru
## [2.1.0] - 2022-05-05
### Added

View file

@ -53,7 +53,7 @@ if [[ $INPUT_NAMCAP == true ]]; then
fi
# Install depends using paru from aur
if [[ -n $INPUT_AUR ]]; then
if [[ $INPUT_AUR == true ]]; then
echo "::group::Installing depends using paru"
source PKGBUILD
paru -Syu --removemake --needed --noconfirm "${depends[@]}" "${makedepends[@]}"