Merge pull request #21 from hapakaien/bugfix/conditional-bash-script
fix: wrong conditional using paru
This commit is contained in:
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Wrong conditional using paru
|
||||||
|
|
||||||
## [2.1.0] - 2022-05-05
|
## [2.1.0] - 2022-05-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -53,7 +53,7 @@ if [[ $INPUT_NAMCAP == true ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Install depends using paru from aur
|
# Install depends using paru from aur
|
||||||
if [[ -n $INPUT_AUR ]]; then
|
if [[ $INPUT_AUR == true ]]; then
|
||||||
echo "::group::Installing depends using paru"
|
echo "::group::Installing depends using paru"
|
||||||
source PKGBUILD
|
source PKGBUILD
|
||||||
paru -Syu --removemake --needed --noconfirm "${depends[@]}" "${makedepends[@]}"
|
paru -Syu --removemake --needed --noconfirm "${depends[@]}" "${makedepends[@]}"
|
||||||
|
|||||||
Reference in New Issue
Block a user