Skip to content

Commit

Permalink
Fix stripping trailing forward slash for git-get (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbaur authored Oct 18, 2024
1 parent 233686d commit 8eb1d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/git-get
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [ -z "$clone_path" ]; then
fi

dirname=${url%/}
dirname=${url%.git}
dirname=${dirname%.git}
dirname=${dirname##*/}

mkdir -p "$clone_path"
Expand Down

0 comments on commit 8eb1d72

Please sign in to comment.