Skip to content

Commit

Permalink
gitlab-shell: fix hard-coded path
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Dec 4, 2018
1 parent 88b63b2 commit c2b54dc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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) {
Expand Down

0 comments on commit c2b54dc

Please sign in to comment.