Fixing "Can't modify frozen string" error messages from rake db:first_user
This commit is contained in:
parent
00973e6ad6
commit
122d1142b9
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ def read_password
|
||||||
return pw1
|
return pw1
|
||||||
end
|
end
|
||||||
|
|
||||||
username = ARGS[:username] || 'admin'
|
username = (ARGS[:username] || 'admin').dup
|
||||||
email = ARGS[:email] || "#{username}@#{AppConfig[:pod_uri].host}"
|
email = ARGS[:email] || "#{username}@#{AppConfig[:pod_uri].host}"
|
||||||
password = ARGS[:password] || read_password
|
password = ARGS[:password] || read_password
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue