From c73a8150e7c619dcd7d6d6c465baa9e4fc4b0c41 Mon Sep 17 00:00:00 2001 From: Zafranudin Zafrin Date: Mon, 11 Sep 2023 07:37:35 +0200 Subject: [PATCH] feat: Handle project path --- lib/windclutter/cli/commands/project.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/windclutter/cli/commands/project.rb b/lib/windclutter/cli/commands/project.rb index e72c008..fbb5d96 100644 --- a/lib/windclutter/cli/commands/project.rb +++ b/lib/windclutter/cli/commands/project.rb @@ -38,6 +38,7 @@ def call(name: nil, **) Config.update('active_project', project_name) Config.setup_project(project_name) + Config.update_project(project_name, 'project_path', Dir.pwd) puts "Using project \"#{project_name}\"".green end end