fix: Turn cli file path into absolute path before passing it on

This commit is contained in:
WerWolv 2025-11-30 23:57:22 +01:00
parent 4e2dcef7d7
commit 4caa0ce570
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ namespace hex::plugin::builtin {
std::fs::path path;
try {
path = std::fs::weakly_canonical(arg);
path = std::fs::absolute(arg);
} catch(std::fs::filesystem_error &) {
path = arg;
}