From 7a683a46a9a8658423380d92d8f0dae00e53ef39 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 10 Oct 2024 11:37:01 -0500 Subject: [PATCH] updated build system --- support/src/utils/path.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/support/src/utils/path.cpp b/support/src/utils/path.cpp index a8caf99a..bd3e8a41 100644 --- a/support/src/utils/path.cpp +++ b/support/src/utils/path.cpp @@ -32,7 +32,9 @@ namespace { #if defined(_WIN32) if (repertory::utils::string::contains(path, "~\\")) { repertory::utils::string::replace(path, "~\\", "%USERPROFILE%\\"); - } else if (repertory::utils::string::contains(path, "~/")) { + } + + if (repertory::utils::string::contains(path, "~/")) { repertory::utils::string::replace(path, "~/", "%USERPROFILE%\\"); }