Skip to content

Commit 1cfea71

Browse files
authored
fix: Update git-worktree-manager.sh to remove additional trailing \ from RAW_REPO_URL
1 parent 38d63df commit 1cfea71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-worktree-manager.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SCRIPT_VERSION="1.1.0"
66
SCRIPT_FOLDER="$HOME/.git-worktree-manager"
77
SCRIPT_NAME="git-worktree-manager.sh"
88
GITHUB_REPO="lucasmodrich/git-worktree-manager"
9-
RAW_BRANCH_URL="https://raw.githubusercontent.com/$GITHUB_REPO/refs/heads/main/"
9+
RAW_BRANCH_URL="https://raw.githubusercontent.com/$GITHUB_REPO/refs/heads/main"
1010
RAW_URL="https://raw.githubusercontent.com/$GITHUB_REPO/refs/heads/main/$SCRIPT_NAME"
1111

1212
set -e
@@ -257,4 +257,4 @@ else
257257
fi
258258

259259
echo "✅ Setup complete!"
260-
git worktree list
260+
git worktree list

0 commit comments

Comments
 (0)