Skip to content

Commit 2fafc0b

Browse files
authored
Merge pull request #2 from PyraOS/stuff
default OS to stable
2 parents f0127e1 + b26fadf commit 2fafc0b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

makeimg.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ IMAGESIZE="$2"
2424

2525
#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.
2626

27-
if [ -z $OS ] ; then echo \$OS undefined; exit -1; fi
27+
if [ -z $OS ]
28+
then
29+
echo OS defaulting to stable
30+
OS=stable
31+
fi
32+
2833

2934
echo "OS Name: ${OS}"
3035
echo "Current Dir: $PWD"

0 commit comments

Comments
 (0)