Skip to content

Commit

Permalink
Fix "The path is not of a legal form"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaex committed Nov 2, 2017
1 parent d15867e commit 2a82d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShareX.Setup/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private enum SetupJobs
private static SetupJobs Job = SetupJobs.AppVeyorWindowsStore;
private static bool AppVeyor = false;

private static string ParentDir => AppVeyor ? "" : @"..\..\..\";
private static string ParentDir => AppVeyor ? "." : @"..\..\..\";
private static string BinDir => Path.Combine(ParentDir, "ShareX", "bin");
private static string ReleaseDir => Path.Combine(BinDir, "Release");
private static string DebugDir => Path.Combine(BinDir, "Debug");
Expand Down

0 comments on commit 2a82d3f

Please sign in to comment.