From 49a572588afa0a143592ad91dc8ee1f9758dea32 Mon Sep 17 00:00:00 2001 From: pika Date: Sat, 24 May 2025 12:36:29 +0200 Subject: [PATCH] bugfixing.. --- dream.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dream.sh b/dream.sh index 4298852..04a2c22 100644 --- a/dream.sh +++ b/dream.sh @@ -442,7 +442,7 @@ dist_setup() { _setup debian # Codename support if [ -n $VERSION_CODENAME ]; then - export $VERSION_CODENAME=$VERSION_CODENAME + export $VERSION_CODENAME=true # exports the version codename as a variable like.. # trixie) trixie=true ;; # bookworm) bookworm=true ;; @@ -456,7 +456,7 @@ dist_setup() { _setup ubuntu # Codename support if [ -n $VERSION_CODENAME ]; then - export $VERSION_CODENAME=$VERSION_CODENAME + export $VERSION_CODENAME=true # exports the version codename as a variable like.. # noble) noble=true ;; # jammy) jammy=true ;;