Remove bogus '|' symbol

This commit is contained in:
Jacob Vosmaer (GitLab) 2018-04-13 13:16:07 +00:00 committed by Douwe Maan
parent 0b422c476d
commit 0c357db3a4
1 changed files with 1 additions and 1 deletions

View File

@ -1470,7 +1470,7 @@ module Gitlab
return [] if empty? || safe_query.blank?
args = %W(ls-tree --full-tree -r #{ref || root_ref} --name-status | #{safe_query})
args = %W(ls-tree -r --name-status --full-tree #{ref || root_ref} -- #{safe_query})
run_git(args).first.lines.map(&:strip)
end