Skip to content

Commit 3a0b678

Browse files
committed
Trying to solve issues with sid.
1 parent 37bbe4a commit 3a0b678

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tools/metacall-environment.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@ sub_c(){
595595

596596
case ${LINUX_DISTRO} in
597597
debian)
598-
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
599-
# TODO: For now, trixie == sid, change when trixie is released
598+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
599+
# TODO: For now, bookworm || trixie == sid, change when bookworm || trixie is released
600600
CODENAME="unstable"
601601
LINKNAME=""
602602
else
@@ -765,8 +765,8 @@ sub_clangformat(){
765765

766766
case ${LINUX_DISTRO} in
767767
debian)
768-
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
769-
# TODO: For now, trixie == sid, change when trixie is released
768+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
769+
# TODO: For now, bookworm || trixie == sid, change when bookworm || trixie is released
770770
CODENAME="unstable"
771771
LINKNAME=""
772772
else

tools/metacall-runtime.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ sub_c(){
227227

228228
case ${LINUX_DISTRO} in
229229
debian)
230-
if [ "${VERSION:-}" == "unstable" ] || [ "${VERSION:-}" == "testing" ] || [[ "${VERSION_CODENAME}" == "trixie" ]]; then
231-
# TODO: For now, trixie == sid, change when trixie is released
230+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
231+
# TODO: For now, bookworm || trixie == sid, change when bookworm || trixie is released
232232
CODENAME="unstable"
233233
LINKNAME=""
234234
else

0 commit comments

Comments
 (0)