-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from MenkeTechnologies/master
remove : substituion that breaks USER:PAT/URL
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|