diff --git a/dot_local/bin/executable_sync-dotfiles-remote.sh b/dot_local/bin/executable_sync-dotfiles-remote.sh index a6ecd4c..1a0e746 100644 --- a/dot_local/bin/executable_sync-dotfiles-remote.sh +++ b/dot_local/bin/executable_sync-dotfiles-remote.sh @@ -5,6 +5,7 @@ set -e REMOTE="${1:?Usage: $0 user@host}" +LOCAL_HOME="$HOME" echo "Creating dotfiles archive..." chezmoi archive --output=/tmp/dotfiles.tar.gz @@ -21,4 +22,9 @@ ssh "$REMOTE" 'cd ~ && tar -xzf /tmp/dotfiles.tar.gz && rm /tmp/dotfiles.tar.gz' echo "Extracting Claude marketplaces..." ssh "$REMOTE" 'mkdir -p ~/.claude/plugins && tar -xzf /tmp/claude-marketplaces.tar.gz -C ~/.claude/plugins && rm /tmp/claude-marketplaces.tar.gz' +echo "Fixing plugin paths for remote home directory..." +ssh "$REMOTE" "sed -i.bak 's|$LOCAL_HOME|\$HOME|g' ~/.claude/plugins/installed_plugins.json && rm -f ~/.claude/plugins/installed_plugins.json.bak" +# Expand $HOME on remote +ssh "$REMOTE" 'sed -i.bak "s|\$HOME|$HOME|g" ~/.claude/plugins/installed_plugins.json && rm -f ~/.claude/plugins/installed_plugins.json.bak' + echo "Done! Dotfiles and Claude marketplaces synced to $REMOTE"