diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-27 20:44:10 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-08-27 20:44:10 +0200 |
commit | cd36f59cac72920d1b46036da3ddcc82f7280c96 (patch) | |
tree | 14852454b16e38f14c57d8149a8519d14ed2294a /tasks.cc | |
parent | 7731613f50eb45e5af9cd96e05fc7e43dc3643d1 (diff) |
Fix path to string conversions.
Diffstat (limited to 'tasks.cc')
-rw-r--r-- | tasks.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ std::list<std::shared_ptr<Task>> getTasks(const Settings& settings) for(std::size_t i = 0; i < numConfigFiles; ++i) { std::string path = - std::filesystem::path(configFiles[i].file).parent_path(); + std::filesystem::path(configFiles[i].file).parent_path().string(); if(settings.verbose > 1) { std::cout << configFiles[i].file << " in path " << path << "\n"; |