We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04541ac commit 38da44cCopy full SHA for 38da44c
lib/metasploit/framework/parsed_options/base.rb
@@ -76,9 +76,9 @@ def options
76
user_database_yaml = user_config_root.join('database.yml')
77
78
if user_database_yaml.exist?
79
- options.database.config = [user_database_yaml.to_path]
+ options.database.config = user_database_yaml.to_path
80
else
81
- options.database.config = ['config/database.yml']
+ options.database.config = 'config/database.yml'
82
end
83
84
options.database.disable = false
0 commit comments