pogo 2.39.2 → 2.39.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/heroku/command/base.rb +1 -1
- data/lib/heroku/version.rb +1 -1
- metadata +1 -1
data/lib/heroku/command/base.rb
CHANGED
@@ -205,7 +205,7 @@ protected
|
|
205
205
|
return unless File.exists?(".git")
|
206
206
|
git("remote -v").split("\n").each do |remote|
|
207
207
|
name, url, method = remote.split(/\s/)
|
208
|
-
if url =~ /^git@#{Heroku::Auth.git_host}(?:[\.\w]*):([\w\d
|
208
|
+
if url =~ /^git@#{Heroku::Auth.git_host}(?:[\.\w]*):([\w\d-\/]+)\.git$/
|
209
209
|
remotes[name] = $1
|
210
210
|
end
|
211
211
|
end
|
data/lib/heroku/version.rb
CHANGED