Skip to content

Commit 4da180e

Browse files
committed
Solve issues.
1 parent 956f8a8 commit 4da180e

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
@@ -607,8 +607,8 @@ sub_c(){
607607

608608
case ${LINUX_DISTRO} in
609609
debian)
610-
# For now trixie == sid, change when trixie is released
611-
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
610+
# For now bookworm || trixie == sid, change when trixie is released
611+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
612612
CODENAME="unstable"
613613
LINKNAME=""
614614
else
@@ -779,8 +779,8 @@ sub_clangformat(){
779779

780780
case ${LINUX_DISTRO} in
781781
debian)
782-
# For now trixie == sid, change when trixie is released
783-
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
782+
# For now bookworm || trixie == sid, change when trixie is released
783+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
784784
CODENAME="unstable"
785785
LINKNAME=""
786786
else

tools/metacall-runtime.sh

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

266266
case ${LINUX_DISTRO} in
267267
debian)
268-
# For now trixie == sid, change when trixie is released
269-
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
268+
# For now bookworm || trixie == sid, change when trixie is released
269+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
270270
CODENAME="unstable"
271271
LINKNAME=""
272272
else

0 commit comments

Comments
 (0)