Skip to content

Commit 4302288

Browse files
authored
Merge pull request #48 from 2m/fix/false-positive-depends-2m
Make dependency parsing more strict
2 parents 7af6c2f + 156b5c6 commit 4302288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pkgname=$(grep -E 'pkgname' .SRCINFO | sed -e 's/.*= //')
5353

5454
install_deps() {
5555
# install all package dependencies
56-
grep -E 'depends' .SRCINFO | \
56+
grep -E 'depends =' .SRCINFO | \
5757
sed -e 's/.*depends = //' -e 's/:.*//' | \
5858
xargs yay -S --noconfirm --needed
5959
}

0 commit comments

Comments
 (0)