mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #2939 from byxorna/gabe-personalities-with-symbols
allow files in personality to have symbol keys
This commit is contained in:
commit
e76623f9bc
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ module Fog
|
|||
data['server']['personality'] = []
|
||||
for file in options['personality']
|
||||
data['server']['personality'] << {
|
||||
'contents' => Base64.encode64(file['contents']),
|
||||
'path' => file['path']
|
||||
'contents' => Base64.encode64(file['contents'] || file[:contents]),
|
||||
'path' => file['path'] || file[:path]
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue