load_credentials just returns nil on errors
This commit is contained in:
parent
31fac0a6f5
commit
4666fedaed
|
@ -37,10 +37,9 @@ module Google
|
|||
##
|
||||
# Attempt to read in credentials from the specified file.
|
||||
def load_credentials
|
||||
if File.exists?(path) && File.readable?(path) && File.writable?(path)
|
||||
credentials = File.open(path, 'r') { |f| JSON.parse(f.read) }
|
||||
end
|
||||
credentials
|
||||
File.open(path, 'r') { |f| JSON.parse(f.read) }
|
||||
rescue
|
||||
nil
|
||||
end
|
||||
|
||||
##
|
||||
|
|
Loading…
Reference in New Issue