Skip to content
Snippets Groups Projects
Commit fad6df6e authored by Natanael Copa's avatar Natanael Copa
Browse files

abuild: minor bugfix

parent 28b7f5d2
No related branches found
No related tags found
No related merge requests found
...@@ -741,7 +741,8 @@ builddeps() { ...@@ -741,7 +741,8 @@ builddeps() {
# find dependencies that are installed but missing in repo. # find dependencies that are installed but missing in repo.
for i in $deps; do for i in $deps; do
if [ -z "$(apk search --repo "$apkcache" $i)" ]; then local m=$(apk search --repo "$apkcache" $i)
if [ -z "$m" ]; then
missing="$missing $i" missing="$missing $i"
fi fi
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment