fix issue with executatble paths

This commit is contained in:
Thomas G 2022-07-20 21:49:15 +10:00
parent 7374877a1b
commit 015193c0dd
1 changed files with 2 additions and 2 deletions

View File

@ -69,14 +69,14 @@ namespace ARCHBLOXBootstrapper
{ {
Directory.CreateDirectory(clientPath); Directory.CreateDirectory(clientPath);
wc.DownloadFileAsync(new Uri(@"https://archblox.com/studio/" + version_string + ".zip"), filePath); wc.DownloadFileAsync(new Uri(@"https://archblox.com/studio/" + version_string + ".zip"), filePath);
progressBar2.Style = ProgressBarStyle.Blocks; progressBar2.Style = ProgressBarStyle.Blocks;
handle.WaitOne(); handle.WaitOne();
} }
} }
private void ARCHBLOX_Load(object sender, EventArgs e) private void ARCHBLOX_Load(object sender, EventArgs e)
{ {
// nothing lol! // nothing
} }
private void Client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) private void Client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
{ {