diff options
author | ThibG <thib@sitedethib.com> | 2019-04-22 23:06:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-22 23:06:54 +0200 |
commit | 91a74ea86bb0c5b0016012ad50231956ff26592c (patch) | |
tree | ede17b03acf207674fdf2d535a4ca05a5ed69986 /lib | |
parent | c3fa4e8e07e5bcc685163959833a989fb15e8029 (diff) | |
parent | 039e35560c04e4af1bb35b8ab11b9e145c8a4985 (diff) |
Merge pull request #1002 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mastodon/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 5d1b8e6d9..8172aeb94 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -37,11 +37,11 @@ module Mastodon end def repository - 'glitch-soc/mastodon' + ENV.fetch('GITHUB_REPOSITORY') { 'glitch-soc/mastodon' } end def source_base_url - "https://github.com/#{repository}" + ENV.fetch('SOURCE_BASE_URL') { "https://github.com/#{repository}" } end # specify git tag or commit hash here |