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.
2 parents 53d431f + 0f03fe9 commit 314ba7dCopy full SHA for 314ba7d
scripts/setup_deps.sh
@@ -17,6 +17,7 @@ missing=()
17
# Check for missing dependencies
18
19
cmd_exists curl || missing+=("curl")
20
+cmd_exists qemu-img || missing+=("qemu-utils")
21
22
ls /usr/share/keyrings/debian-archive* &>/dev/null 2>&1 || missing+=("debian-archive-keyring")
23
@@ -49,7 +50,7 @@ fi
49
50
51
apt_pkgs=()
52
for dep in "${missing[@]}"; do
- [[ "$dep" == "curl" || "$dep" == "debian-archive-keyring" ]] && apt_pkgs+=("$dep")
53
+ [[ "$dep" == "curl" || "$dep" == "debian-archive-keyring" || "$dep" == "qemu-utils" ]] && apt_pkgs+=("$dep")
54
done
55
56
if [ ${#apt_pkgs[@]} -gt 0 ]; then
0 commit comments