Tools: Delete reseed test files before retest

This commit is contained in:
zzz
2023-01-28 06:26:08 -05:00
parent a27e1393f1
commit 56e00fbe3a

View File

@@ -1238,6 +1238,7 @@ public class Reseeder {
String host = uri.getHost();
System.out.println("Testing " + host);
File su3 = new File(host + ".su3");
su3.delete();
try {
SSLEepGet get;
if (sslState == null) {
@@ -1251,6 +1252,7 @@ public class Reseeder {
if (rc == 200) {
SU3File su3f = new SU3File(su3);
File zip = new File(host + ".zip");
zip.delete();
su3f.verifyAndMigrate(zip);
SU3File.main(new String[] {"showversion", su3.getPath()});
String version = su3f.getVersionString();