debian-mirror-gitlab/debian/patches/tweaks/0030-fix-gitlab-yml-path.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
434 B
Diff
Raw Normal View History

2020-04-13 13:49:04 +05:30
Fix for debian package layout
--- a/config/settings.rb
+++ b/config/settings.rb
2022-07-29 18:21:45 +05:30
@@ -3,7 +3,7 @@
require 'settingslogic'
class Settings < Settingslogic
- source ENV.fetch('GITLAB_CONFIG') { Pathname.new(File.expand_path('..', __dir__)).join('config/gitlab.yml') }
+ source ENV.fetch('GITLAB_CONFIG') { Pathname.new(File.expand_path('gitlab.yml', __dir__)) }
namespace ENV.fetch('GITLAB_ENV') { Rails.env }
class << self