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 e426a09 commit 98c7d21Copy full SHA for 98c7d21
.github/ci/build-env
@@ -9,12 +9,14 @@ docker_image="camera_streamer_build_env"
9
10
build_type="raspi"
11
[[ -n "$1" ]] && build_type="$1"
12
+shift
13
14
debian_version="bookworm"
-[[ -n "$2" ]] && debian_version="$2" && docker_image="${docker_image}_${2}"
15
+[[ -n "$1" ]] && debian_version="$1" && docker_image="${docker_image}_${1}"
16
17
-arch=${3:-$(dpkg --print-architecture)}
-shift 3
18
+arch=${1:-$(dpkg --print-architecture)}
19
20
21
case "$arch" in
22
amd64)
0 commit comments