From 964e8598b1fdcf85b4d9099b21332fb8eb3a4ad7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 1 Jun 2025 18:33:37 +1200 Subject: [PATCH] 'Generic Commit' --- source/src/commands/install.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/commands/install.cpp b/source/src/commands/install.cpp index da772d5..44b47a6 100644 --- a/source/src/commands/install.cpp +++ b/source/src/commands/install.cpp @@ -310,7 +310,7 @@ complete -F _dropshell_completions ds std::filesystem::remove(exe_path.parent_path() / "dropshell.old"); // execute the new version - execlp("bash", "bash", "-c", (parent_path / "dropshell").c_str(), "install", (char *)nullptr); + execlp("bash", "bash", "-c", (exe_path.parent_path() / "dropshell").string() + "install", (char *)nullptr); error << "Failed to execute new version of dropshell." << std::endl; return -1; }