Skip to content

Commit 4766af0

Browse files
haoyang chenclaude
andcommitted
Fix install.sh to clone rdev-setup branch instead of master
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 2ad23ea commit 4766af0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# bash install.sh --help # show help
1111
#
1212
# One-liner (no clone needed):
13-
# sh -c "$(curl -fsSL https://raw.githubusercontent.com/advpetc/kickstart.nvim/master/install.sh)"
13+
# sh -c "$(curl -fsSL https://raw.githubusercontent.com/advpetc/kickstart.nvim/rdev-setup/install.sh)"
1414
#
1515
set -euo pipefail
1616

@@ -698,7 +698,7 @@ clone_nvim_config() {
698698

699699
log_info "Cloning Neovim config from $NVIM_CONFIG_REPO..."
700700
mkdir -p "$(dirname "$NVIM_CONFIG_DIR")"
701-
git clone "$NVIM_CONFIG_REPO" "$NVIM_CONFIG_DIR"
701+
git clone -b rdev-setup "$NVIM_CONFIG_REPO" "$NVIM_CONFIG_DIR"
702702
log_ok "Neovim config cloned to $NVIM_CONFIG_DIR"
703703
}
704704

@@ -782,7 +782,7 @@ show_help() {
782782
echo "Usage: bash install.sh"
783783
echo ""
784784
echo "One-liner install (no clone needed):"
785-
echo " sh -c \"\\\$(curl -fsSL https://raw.githubusercontent.com/advpetc/kickstart.nvim/master/install.sh)\""
785+
echo " sh -c \"\\\$(curl -fsSL https://raw.githubusercontent.com/advpetc/kickstart.nvim/rdev-setup/install.sh)\""
786786
echo ""
787787
echo "Installs all dependencies for the Neovim configuration and clones the"
788788
echo "config repo to ~/.config/nvim/ (backs up any existing config)."

0 commit comments

Comments
 (0)