diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-08 14:35:20 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-08 14:35:20 +0200 |
| commit | 9566be4781d577513d8382d129b054681ce88334 (patch) | |
| tree | 4c6a5264b5141807d81962f6efad03c34e4831ff /Rexfile | |
| parent | 47bc74cc1052f313488d0fde1555f48070469047 (diff) | |
fix
Diffstat (limited to 'Rexfile')
| -rw-r--r-- | Rexfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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'; |
