Skip to content

Commit 9ccabe1

Browse files
committed
Make long strings more readable
1 parent c0de1f9 commit 9ccabe1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

bin/installer/eve_install.rb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ class EveInstaller
1515
@github_base = 'https://github.com/Inspyre-Technologies/EveIRC/'
1616
@connection_check = true
1717
@no_hint = false
18-
@docs_base_url = 'wiki/eveIRC-Auto-Installer'
19-
@issue_url = 'issues/new?assignees=doubledave%2C+tayjaybabee&labels=installer%2C+Investigating&template=installer_issue.md&title=%5BINSTALLER%3A+Issue%5D'
18+
@docs_base_url = "#{@github_base}wiki/eveIRC-Auto-Installer"
19+
@issue_url = "#{github_base}issues/new?assignees=doubledave%2C+"\
20+
'tayjaybabee&labels=installer%2C+Investigating&'\
21+
'template=installer_issue.md&title=%5BINSTALLER%3A+Issue%5D'
2022

2123

2224
options = {}
@@ -44,6 +46,7 @@ class EveInstaller
4446

4547
YES_PAT = Regexp.union(yes)
4648

49+
4750
# When the user has indicated a desire to exit the program
4851
# this function is called
4952
#
@@ -101,7 +104,7 @@ def self.main
101104
EveInstaller::DepMan.new
102105
rescue DepMan::MissingDependenciesError::UserDeclineError => e
103106
puts e.msg
104-
puts e.hint unless EveInstaller.no_hint
107+
puts e.hint unless @no_hint
105108
puts 'Exiting...'
106109

107110
rescue DepMan::PermissionsError => e

0 commit comments

Comments
 (0)