Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion makeimg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading