diff --git a/Bloxstrap/Bloxstrap.csproj b/Bloxstrap/Bloxstrap.csproj
index 0f97dbb..939e64b 100644
--- a/Bloxstrap/Bloxstrap.csproj
+++ b/Bloxstrap/Bloxstrap.csproj
@@ -9,8 +9,8 @@
AnyCPU
AnyCPU;x86
Bloxstrap.ico
- 1.4.1
- 1.4.1.0
+ 1.4.2
+ 1.4.2.0
diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs
index df19c1a..269dd3c 100644
--- a/Bloxstrap/Bootstrapper.cs
+++ b/Bloxstrap/Bootstrapper.cs
@@ -435,10 +435,12 @@ namespace Bloxstrap
File.Delete(filename);
}
- if (VersionGuid != Program.Settings.VersionGuid)
+ string oldVersionFolder = Path.Combine(Directories.Versions, Program.Settings.VersionGuid);
+
+ if (VersionGuid != Program.Settings.VersionGuid && Directory.Exists(oldVersionFolder))
{
// and also to delete our old version folder
- Directory.Delete(Path.Combine(Directories.Versions, Program.Settings.VersionGuid), true);
+ Directory.Delete(oldVersionFolder, true);
}
}
diff --git a/Bloxstrap/Helpers/DeployManager.cs b/Bloxstrap/Helpers/DeployManager.cs
index 54d291c..f67018d 100644
--- a/Bloxstrap/Helpers/DeployManager.cs
+++ b/Bloxstrap/Helpers/DeployManager.cs
@@ -17,6 +17,7 @@ namespace Bloxstrap.Helpers
"LIVE",
"ZAvatarTeam",
"ZCanary",
+ "ZFeatureHarmony",
"ZIntegration",
"ZLive",
"ZNext",
@@ -43,6 +44,7 @@ namespace Bloxstrap.Helpers
"ZFeatureBoost_Removal_Test_In_Prod",
"ZFeatureFMOD-20115",
"ZFeatureFMOD-Recording-Test",
+ "ZFeatureHarmony",
"ZFeatureHSR2CDNPlayTest",
"ZFeatureHSR2CDNPlayTest2",
"ZFeatureInstance-Parent-Weak-Ptr",