Skip to content

Commit

Permalink
Merge pull request #388 from cmu-sei/v8
Browse files Browse the repository at this point in the history
fixes path issue in client
  • Loading branch information
sei-dupdyke authored Aug 6, 2024
2 parents a4f3076 + f32a4ee commit 098e721
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Ghosts.Client/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyInformationalVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.1.0.0")]
[assembly: AssemblyFileVersion("8.1.1.0")]
2 changes: 1 addition & 1 deletion src/Ghosts.Domain/Code/ApplicationDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static string InstalledPath
}
catch
{
return Assembly.GetEntryAssembly()?.Location;
return Clean(Path.GetDirectoryName(Assembly.GetEntryAssembly()?.Location));
}
}
}
Expand Down

0 comments on commit 098e721

Please sign in to comment.