Skip to content

Commit

Permalink
Allow LIBCHROMIUMCONTENT_COMMIT to be overridden from the environment
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkidder committed Sep 7, 2016
1 parent 691aec7 commit 8ec49fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \
'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'
LIBCHROMIUMCONTENT_COMMIT = 'c5cf295ef93d4ee88bff0c4b06b28ff0969a890e'
LIBCHROMIUMCONTENT_COMMIT = os.getenv('LIBCHROMIUMCONTENT_COMMIT') or \
'c5cf295ef93d4ee88bff0c4b06b28ff0969a890e'

PLATFORM = {
'cygwin': 'win32',
Expand Down

0 comments on commit 8ec49fe

Please sign in to comment.