diff --git a/lib/client/storage/_github.js b/lib/client/storage/_github.js index 4576fa9d..b730c819 100644 --- a/lib/client/storage/_github.js +++ b/lib/client/storage/_github.js @@ -148,8 +148,10 @@ var CloudCmd, Util, DOM, CloudFunc, Github, cb; options.files = files; gist.create(options, function(error, data) { - Util.log(error || data); - Util.log(data && data.html_url); + if (error) + Util.log(error || data); + else + Util.logArray([data, data.html_url]); Util.exec(callback); DOM.Images.hide();