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 77eed4c commit e3cdcd2Copy full SHA for e3cdcd2
test/desktop-lite/test.sh
@@ -29,12 +29,8 @@ check "log-exists" bash -c "ls /tmp/container-init.log"
29
check "fluxbox-exists" bash -c "ls -la ~/.fluxbox"
30
31
. /etc/os-release
32
-if [ "${ID}" = "ubuntu" ]; then
33
- if [ "${VERSION_CODENAME}" = "noble" ]; then
34
- checkOSPackage "if libasound2-dev exists !" "libasound2-dev"
35
- else
36
- checkOSPackage "if libasound2 exists !" "libasound2"
37
- fi
+if [ "${VERSION_CODENAME}" = "noble" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
+ checkOSPackage "if libasound2-dev exists !" "libasound2-dev"
38
else
39
checkOSPackage "if libasound2 exists !" "libasound2"
40
fi
0 commit comments