Skip to content

Commit

Permalink
Hopefully make DBD manifest path behave better
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed Nov 25, 2024
1 parent 948948b commit 883e19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/DBDManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static class DBDManifest
{
public static void Load()
{
var manifestLocation = Path.Combine(SettingsManager.definitionDir, "..", "manifest.json");
var manifestLocation = Path.GetFullPath(Path.Combine(SettingsManager.definitionDir, "..", "manifest.json"));
if(!File.Exists(manifestLocation))
{
Console.WriteLine("No manifest found at " + manifestLocation + ", skipping DBD manifest initialization.");
Expand Down

0 comments on commit 883e19a

Please sign in to comment.