Skip to content

Commit

Permalink
fix(ci): Assign array instead of variable
Browse files Browse the repository at this point in the history
Signed-off-by: txtsd <[email protected]>
  • Loading branch information
txtsd committed Feb 29, 2024
1 parent d766fb7 commit 9a8f3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
packages_for_yay=$(pacman -S --noconfirm --asdeps ${depends[@]} ${makedepends[@]} ${checkdepends[@]} 2>&1 | rg "error: target not found: " -r "")
if [[ -n "${packages_for_yay}" ]]
then
packages_temp=${packages_for_yay}
packages_temp=${packages_for_yay[@]}
packages_for_yay=()
for pkg in "${packages_for_temp}"
do
Expand Down

0 comments on commit 9a8f3ca

Please sign in to comment.