Skip to content
Open
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
3 changes: 2 additions & 1 deletion mkvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ else # Interactive mode
echo
read template
# Better test?
if [ "$template" = "" ]; then
# → yes, maybe
if [ -z "$template" ]; then
echo "No template entered."
echo
elif [ ! -f ${host_templates}/$template ]; then
Expand Down