dreamcast_shelf build config: minor fix for KOS_BASE check

This commit is contained in:
SiZiOUS
2025-08-01 00:07:28 +02:00
parent 55bcd35bed
commit 676af02024
+1 -1
View File
@@ -23,7 +23,7 @@ MRuby::CrossBuild.new("dreamcast") do |conf|
KOS_BASE = ENV["KOS_BASE"]
# Check environment variables
if (KOS_BASE.nil? || KOS_BASE.empty?)
if KOS_BASE.to_s.empty?
raise "Error: KallistiOS is required; KOS_BASE need to be declared; Stop."
end