Skip to content

Commit

Permalink
corrected avatar url error
Browse files Browse the repository at this point in the history
  • Loading branch information
DomBennett committed Jan 6, 2016
1 parent 10a9752 commit ec19c3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/prebuild.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Convert docs for the FGE website from the /BES-QSIG/docs repository.
# Usage:
# ruby build.rb
# ruby script/prebuild.rb
# jekyll build
# Then, upload _site/ to gh-pages branch.

# LIBS
require 'FileUtils'
require 'fileutils'
require 'open-uri'
require 'json'
require 'pp'
Expand Down Expand Up @@ -45,7 +45,7 @@ def mkgithubyml(udata)
yml = "- name: #{getYmlString(udata, "name")}
email: #{getYmlString(udata, "email")}
affiliation: #{getYmlString(udata, "company")}
image: #{getYmlString(udata, "avatar_url")}
image: #{udata["avatar_url"]}
github_username: #{getYmlString(udata, "login")}
"
yml
Expand Down

0 comments on commit ec19c3f

Please sign in to comment.