From 7280ae47ab810e8c21956326fc3c1be15885dcb7 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Wed, 30 Dec 2020 14:40:03 +0100 Subject: [PATCH] Fix missing absolute_path call in change-project-folder command --- data/core/commands/core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/core/commands/core.lua b/data/core/commands/core.lua index 78e34798..5fef0366 100644 --- a/data/core/commands/core.lua +++ b/data/core/commands/core.lua @@ -141,7 +141,7 @@ command.add(nil, { ["core:change-project-folder"] = function() core.command_view:enter("Change Project Folder", function(text) - text = common.home_expand(text) + text = system.absolute_path(common.home_expand(text)) local path_stat = system.get_file_info(text) if not path_stat or path_stat.type ~= 'dir' then core.error("Cannot open folder %q", text)