From c2b54dcee585480811a10b8e1dd0dd0b46139caa Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 4 Dec 2018 21:26:24 +0100 Subject: [PATCH] gitlab-shell: fix hard-coded path --- .../gitlab/gitlab-shell/remove-hardcoded-locations.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch b/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch index 3d381404c63..7819c863a35 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch +++ b/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch @@ -25,7 +25,7 @@ index 435cb29..078c1df 100644 func NewFromDir(dir string) (*Config, error) { - return newFromFile(path.Join(dir, configFile)) -+ return newFromFile(path.Join(dir, "shell-config.yml")) ++ return newFromFile("/run/gitlab/shell-config.yml") } func newFromFile(filename string) (*Config, error) {