diff --git a/apt_query b/apt_query deleted file mode 100755 index db7287f..0000000 Binary files a/apt_query and /dev/null differ diff --git a/apt_query-arm64 b/apt_query-arm64 index 4305d8b..cc636f6 100755 Binary files a/apt_query-arm64 and b/apt_query-arm64 differ diff --git a/apt_query-x86 b/apt_query-x86 new file mode 100755 index 0000000..5ad8deb Binary files /dev/null and b/apt_query-x86 differ diff --git a/lib.sh b/lib.sh index 03adc4a..755d939 100755 --- a/lib.sh +++ b/lib.sh @@ -2,7 +2,7 @@ # Don't fail on error. We use the exit status as a conditional. # -# This is the default behavior but can be overriden by the caller in the +# This is the default behavior but can be overridden by the caller in the # SHELLOPTS env var. set +e @@ -114,7 +114,7 @@ function get_normalized_package_list { if [ "${architecture}" == "arm64" ]; then ${script_dir}/apt_query-arm64 normalized-list ${packages} else - ${script_dir}/apt_query normalized-list ${packages} + ${script_dir}/apt_query-x86 normalized-list ${packages} fi }