summaryrefslogtreecommitdiff
path: root/Rexfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-08 14:35:20 +0200
committerPaul Buetow <paul@buetow.org>2026-02-08 14:35:20 +0200
commit9566be4781d577513d8382d129b054681ce88334 (patch)
tree4c6a5264b5141807d81962f6efad03c34e4831ff /Rexfile
parent47bc74cc1052f313488d0fde1555f48070469047 (diff)
fix
Diffstat (limited to 'Rexfile')
-rw-r--r--Rexfile5
1 files changed, 3 insertions, 2 deletions
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';