mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 06:05:00 -05:00
Merge pull request #876 from imathis/gh-pages-url-parser-fix
Updated URL parser for setup_github_pages. Fixes #868
This commit is contained in:
commit
125ff6d080
5
Rakefile
5
Rakefile
@ -382,11 +382,14 @@ task :setup_github_pages, :repo do |t, args|
|
||||
else
|
||||
repo_url = get_stdin("Enter the read/write url for your repository: ")
|
||||
end
|
||||
unless repo_url[-4..-1] == ".git"
|
||||
repo_url << ".git"
|
||||
end
|
||||
raise "!! The repo URL that was input was malformed." unless repo_url.match(/https:\/\/github.com\/[^\/]+\/[^\/]+/) or repo_url.match(/git@github.com:[^\/]+\/[^\/]+/)
|
||||
user_match = repo_url.match(/(:([^\/]+)|(github.com\/([^\/]+)))/)
|
||||
user = user_match[2] || user_match[4]
|
||||
branch = (repo_url.match(/\/[\w-]+.github.com/).nil?) ? 'gh-pages' : 'master'
|
||||
project = (branch == 'gh-pages') ? repo_url.match(/\/([^\.]+)/)[1] : ''
|
||||
project = (branch == 'gh-pages') ? repo_url.match(/\/(.+)(\.git)/)[1] : ''
|
||||
url = "http://#{user}.github.com"
|
||||
url += "/#{project}" unless project == ''
|
||||
unless `git remote -v`.match(/origin.+?octopress.git/).nil?
|
||||
|
Loading…
Reference in New Issue
Block a user