From b26fadf7bec6d63135bf3ae245cbfe5a68390e39 Mon Sep 17 00:00:00 2001 From: turborat Date: Sat, 31 Aug 2024 12:29:20 +0100 Subject: [PATCH] default OS to stable --- makeimg.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/makeimg.sh b/makeimg.sh index 48796e7..96d4cdd 100755 --- a/makeimg.sh +++ b/makeimg.sh @@ -24,7 +24,12 @@ IMAGESIZE="$2" #Bullseye and beyond supported, we need the OS version to automate detection for testing and SID. OS version beyond 30 will trigger testing and unstable. -if [ -z $OS ] ; then echo \$OS undefined; exit -1; fi +if [ -z $OS ] +then + echo OS defaulting to stable + OS=stable +fi + echo "OS Name: ${OS}" echo "Current Dir: $PWD"