diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/boosty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boosty.h b/src/boosty.h index 588c2a9..2e7d76b 100644 --- a/src/boosty.h +++ b/src/boosty.h @@ -60,7 +60,7 @@ inline bool is_absolute( fs::path p ) inline fs::path absolute( fs::path p ) { - return fs::complete( p ); + return fs::complete(p, fs::current_path()); } inline std::string stringy( fs::path p ) |