bin/genZPK in genZPK-0.1.9 vs bin/genZPK in genZPK-0.1.10
- old
+ new
@@ -255,33 +255,34 @@
if fieldPasses == (check.size - 1)
display << "." * (80 - "SUCCESS".size - display.size)
display << "SUCCESS"
puts display
+ puts "-" * 80
successes += 1
else
tmpString = "#{fieldPasses} of #{check.size - 1} fields verified"
display << tmpString
display << "." * (80 - "#{fieldPasses} of #{check.size - 1} fields verified".size - "FAIL".size)
display << "FAIL"
puts display
+ puts "-" * 80
end
else
display << "." * (80 - "FAIL".size - display.size)
display << "FAIL\n"
display << "\tFile not found: #{dir + path}"
puts display
+ puts "-" * 80
end
end
-puts "-" * 80
-
if not successes == subdomainChecks.size
puts "#{successes} of #{subdomainChecks.size} subdomains passed. Please check files listed above and try again."
exit -1
end
-puts "All subdomains passed. Continuing..."
+puts "All subdomains passed. Continuing...\n"
if not File.exists? dir + "/scripts"
FileUtils.mkpath dir + "/scripts"
end
\ No newline at end of file