Avoid magic prefix parsing

This commit is contained in:
Ethan Dennis
2023-07-31 16:45:40 -07:00
parent 5b17fd0d81
commit f6e39fd06c
32 changed files with 67 additions and 61 deletions

View File

@@ -11,7 +11,7 @@ module GitlabCI
def to_a
return if @namespace.nil?
["--namespace", @namespace]
[["--namespace", @namespace]]
end
end
end