diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/PlatformUtils-posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlatformUtils-posix.cc b/src/PlatformUtils-posix.cc index e581de6..d7b7b6d 100644 --- a/src/PlatformUtils-posix.cc +++ b/src/PlatformUtils-posix.cc @@ -4,7 +4,7 @@ std::string PlatformUtils::documentsPath() { fs::path docpath(getenv("HOME")); - docpath /= ".local" / "share"; + docpath = docpath / ".local" / "share"; return boosty::stringy(docpath); } |