Skip to content

Commit

Permalink
update: remove stray comma (legacy tap renaming)
Browse files Browse the repository at this point in the history
Fix regression introduced in fafe8f0.
  • Loading branch information
UniqMartin committed May 9, 2016
1 parent 5a90e71 commit 93e0f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/cmd/update.sh
Expand Up @@ -53,7 +53,7 @@ rename_taps_dir_if_necessary() {
user="$(echo "${tap_dir_basename%-*}" | tr "[:upper:]" "[:lower:]")"
repo="$(echo "${tap_dir_basename:${#user}+1}" | tr "[:upper:]" "[:lower:]")"
mkdir -p "$HOMEBREW_LIBRARY/Taps/$user"
mv "$tap_dir", "$HOMEBREW_LIBRARY/Taps/$user/homebrew-$repo"
mv "$tap_dir" "$HOMEBREW_LIBRARY/Taps/$user/homebrew-$repo"

if [[ ${#${tap_dir_basename//[^\-]}} -gt 1 ]]
then
Expand Down

0 comments on commit 93e0f4f

Please sign in to comment.