mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-21 10:36:04 +10:00
16 lines
255 B
Ruby
16 lines
255 B
Ruby
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Node
|
|
class Global < Entry
|
|
add_node :before_script, BeforeScript
|
|
|
|
def before_script
|
|
@before_script.script
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|