Fixed temp folder not deleting, attempt at fixing pkg download

This commit is contained in:
N00MKRAD
2020-12-03 21:02:50 +01:00
parent 0fb7b2cca3
commit 896e656e03
3 changed files with 14 additions and 6 deletions

View File

@@ -76,7 +76,10 @@ namespace Flowframes.OS
string sysPyVer = GetSysPyVersion();
if (!string.IsNullOrWhiteSpace(sysPyVer) && !sysPyVer.ToLower().Contains("not found") && sysPyVer.Length <= 35)
{
isInstalled = true;
Logger.Log("Using Python installation: " + sysPyVer, false, true);
}
hasCheckedSysPy = true;
sysPyInstalled = isInstalled;