Skip to content

Commit

Permalink
remove accidental 'w' suffix to github project name
Browse files Browse the repository at this point in the history
  • Loading branch information
drnic committed Dec 5, 2012
1 parent 637a313 commit 6b91155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scrolls/github.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
tried_create_already = false
while (@git_uri = `git config remote.origin.url`.strip) && @git_uri.size == 0
if tried_create_already
@repo_name = ask_wizard "Repository already exists. What project name?"
@repo_name = ask_wizard "Repository #{@repo_name} already exists. What project name?"
else
@repo_name = File.basename(File.expand_path("."))
end
if github_private
run "hub create #{@repo_name} -p"
else
run "hub create #{@repo_name}w"
run "hub create #{@repo_name}"
end
tried_create_already = true
end
Expand Down

0 comments on commit 6b91155

Please sign in to comment.