We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa7a42c commit 1e7f6ccCopy full SHA for 1e7f6cc
build-armbian/armbian-files/common-files/usr/sbin/armbian-software
@@ -69,9 +69,14 @@ check_release() {
69
check_depends() {
70
# List of required dependencies
71
dpkg_packages=(
72
- "curl" "tar" "software-properties-common" "apt-transport-https" "ca-certificates"
73
- "git" "coreutils" "systemd" "net-tools" "cpu-checker" "dnsmasq-base" "dmidecode"
+ "apt-transport-https" "ca-certificates" "coreutils" "cpu-checker" "curl"
+ "dmidecode" "dnsmasq-base" "git" "net-tools" "systemd" "tar"
74
)
75
+ # Add additional dependencies for non-trixie versions
76
+ if [[ "${VERSION_CODENAME}" != "trixie" ]]; then
77
+ dpkg_packages+=("software-properties-common")
78
+ fi
79
+
80
# Cyclic check all dependencies
81
is_dpkg="0"
82
i="1"
0 commit comments