From 9566be4781d577513d8382d129b054681ce88334 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 8 Feb 2026 14:35:20 +0200 Subject: fix --- Rexfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Rexfile') diff --git a/Rexfile b/Rexfile index 2729469..ef19e94 100644 --- a/Rexfile +++ b/Rexfile @@ -147,13 +147,14 @@ task 'home_ghostty', sub { ensure "$DOT/ghostty/*" => "$HOME/.config/ghostty/" } desc 'Install slash commands for Cursor and Claude'; task 'home_slashcommands', sub { + # Install to ~/.cursor/commands/ for Cursor file "$HOME/.cursor" => ensure => 'directory', mode => '0750'; - ensure "$DOT/cursor/slashcommands/*" => "$HOME/.cursor/commands/", '0750'; + ensure "$DOT/slashcommands/*" => "$HOME/.cursor/commands/", '0750'; # Install to ~/.claude/commands/ for Claude Code global slash commands file "$HOME/.claude" => ensure => 'directory', mode => '0750'; - ensure "$DOT/cursor/slashcommands/*" => "$HOME/.claude/commands/", '0750'; + ensure "$DOT/slashcommands/*" => "$HOME/.claude/commands/", '0750'; }; desc 'Install ~/scripts'; -- cgit v1.2.3