fix issue with executatble paths
This commit is contained in:
parent
7374877a1b
commit
015193c0dd
4
Form2.cs
4
Form2.cs
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue