fixed app not exiting on error

This commit is contained in:
2021-12-29 04:36:00 +01:00
parent 74d38ff6eb
commit a98d5c316d

View File

@@ -14,6 +14,7 @@ module Kotatsu
Dir.mkdir(dir)
if Dir.exists?(dir) == false
STDERR.puts "ERROR! Could not create directory: #{dir}"
exit(1)
end
end
File.write(file, VERSION)