Skip to content

Commit

Permalink
table path misprint fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
okolo committed Sep 18, 2024
1 parent b789467 commit dfb50e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace Utils {
fs::path prog_path = boost::dll::program_location();
fs::path prog_name = prog_path.stem().string();
fs::path prog_dir = prog_path.parent_path();
fs::path shared_tables_dir = prog_dir.parent_path() / "shared" / prog_name / tables_folder_name;
fs::path shared_tables_dir = prog_dir.parent_path() / "share" / prog_name / tables_folder_name;
fs::path exe_tables_dir = prog_dir / tables_folder_name;

if(fs::is_directory(shared_tables_dir))
Expand Down

0 comments on commit dfb50e5

Please sign in to comment.