Skip to content

Commit

Permalink
RMG-Core: fix CoreGetLibraryDirectory() returning a path with trailin…
Browse files Browse the repository at this point in the history
…g slash
  • Loading branch information
Rosalie241 committed Jan 26, 2024
1 parent 7e239ae commit 7e596c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RMG-Core/Directories.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ std::filesystem::path CoreGetLibraryDirectory(void)
directory = CORE_INSTALL_PREFIX;
directory += "/";
directory += CORE_INSTALL_LIBDIR;
directory += "/RMG/";
directory += "/RMG";
}
#endif // PORTABLE_INSTALL
return directory.make_preferred();
Expand Down

0 comments on commit 7e596c1

Please sign in to comment.