Skip to content

Commit 2330cb6

Browse files
authored
Add support for virtual packages and break out APT logic into common library. (#155)
* Add support for virtual packages and break out APT logic into common library. * Update binaries from commit 128de25
1 parent 128de25 commit 2330cb6

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

apt_query

-2.76 MB
Binary file not shown.

apt_query-arm64

299 KB
Binary file not shown.

apt_query-x86

3.13 MB
Binary file not shown.

lib.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Don't fail on error. We use the exit status as a conditional.
44
#
5-
# This is the default behavior but can be overriden by the caller in the
5+
# This is the default behavior but can be overridden by the caller in the
66
# SHELLOPTS env var.
77
set +e
88

@@ -114,7 +114,7 @@ function get_normalized_package_list {
114114
if [ "${architecture}" == "arm64" ]; then
115115
${script_dir}/apt_query-arm64 normalized-list ${packages}
116116
else
117-
${script_dir}/apt_query normalized-list ${packages}
117+
${script_dir}/apt_query-x86 normalized-list ${packages}
118118
fi
119119
}
120120

0 commit comments

Comments
 (0)