Skip to content

Commit

Permalink
Merge pull request #47 from MenkeTechnologies/master
Browse files Browse the repository at this point in the history
remove : substituion that breaks USER:PAT/URL
  • Loading branch information
MichaelDimmitt authored Jun 22, 2024
2 parents 89b1a0f + ddf3146 commit b203b74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/reveal
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ reveal() {
cut -c 19- | command awk '{print $1}' | command sed '[email protected]$@@' | \
command xargs -I {} $open_cmd https://dashboard.heroku.com/apps/{} https://{}.herokuapp.com >/dev/null 2>&1
{
command git remote -v | command grep -E "$(echo ${argValues/ /|})" | command grep '@' | command grep -o -E '@.*' | cut -c 2-
command git remote -v | command grep -E "$(echo ${argValues/ /|})" | command grep '@' | command grep -o -E '@.*' | command sed 's@:@/@g' | cut -c 2-
command git remote -v | command grep -E "$(echo ${argValues/ /|})" | command grep '//' | command grep -o -E ':.*' | cut -c 4- | command grep -v 'heroku'
} | command grep fetch | command perl -pe 's@:\d{1,5}/@/@' | command sed 's@:@\/@g' | command awk '{print $1}' | sed '[email protected]$@@' | command xargs -I {} $open_cmd https://{} >/dev/null 2>&1
} | command grep fetch | command perl -pe 's@:\d{1,5}/@/@' | command awk '{print $1}' | sed '[email protected]$@@' | command xargs -I {} $open_cmd https://{} >/dev/null 2>&1

unset -f ___reveal__find_open_command_from_Operating_System
unset -f ___reveal_no_git_dir_no_args
Expand Down

0 comments on commit b203b74

Please sign in to comment.