We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a4564 commit 25354a9Copy full SHA for 25354a9
scripts/04-update-libcamera-apps
@@ -6,4 +6,10 @@ export LC_ALL=C
6
source /common.sh
7
install_cleanup_trap
8
9
-apt-get install --yes --only-upgrade libcamera-apps-lite
+if [ "$(lsb_release -cs)" == "bullseye" ]; then
10
+ package="libcamera-apps-lite"
11
+else
12
+ package="rpicam-apps-lite"
13
+fi
14
+
15
+apt-get install --yes --only-upgrade $package
0 commit comments