From 1a92d6efa791e2011bc204e6a74c3e51ced3217b Mon Sep 17 00:00:00 2001 From: Ahmad Husen Date: Sun, 15 May 2022 13:51:00 +0700 Subject: [PATCH] fix: wrong conditional using paru --- CHANGELOG.md | 4 ++++ entrypoint.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d410288..11dfd21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/entrypoint.sh b/entrypoint.sh index 160582d..ea2555f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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[@]}"