diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-24 12:44:17 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-24 12:44:17 +0100 |
| commit | e066d0e5a9efc4ac0a98960a033a13e7216cb613 (patch) | |
| tree | f549b796c9ae4eb5d419b4f70e023937739116fc /lib/core | |
| parent | b097a89f1dd01eb57e605ab2e3002fff127787af (diff) | |
| download | libs-lbm-e066d0e5a9efc4ac0a98960a033a13e7216cb613.tar.gz | |
Moving dir and fixing env error
Diffstat (limited to 'lib/core')
| -rw-r--r-- | lib/core/c++/environment.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/core/c++/environment.hpp b/lib/core/c++/environment.hpp index f9bac48..27d8f3a 100644 --- a/lib/core/c++/environment.hpp +++ b/lib/core/c++/environment.hpp @@ -26,8 +26,8 @@ saw::error_or<environment> lbm_directory(){ { env.data_dir = env.lbm_dir / "data"; - // LBM - auto lbm_dir_config = lbm_dir / "data_dir_location.txt"; + // LBM Data Location + auto lbm_dir_config = env.lbm_dir / "data_dir_location.txt"; if( fs::exists(lbm_dir_config) && fs::is_regular_file(lbm_dir_config) ){ std::ifstream file{lbm_dir_config}; |
