We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48bbeb3 commit 5c9ed46Copy full SHA for 5c9ed46
lib/manageiq/cross_repo/runner/base.rb
@@ -12,8 +12,11 @@ def initialize(script_cmd = nil)
12
end
13
14
def build_test_script
15
- load_config!
16
- build_script
+ <<~BASH_SCRIPT
+ #!/bin/bash
17
+
18
+ #{build_commands.join("\n")}
19
+ BASH_SCRIPT
20
21
22
private
@@ -56,14 +59,6 @@ def build_section(section, *commands)
56
59
]
57
60
58
61
- def build_script
- <<~BASH_SCRIPT
- #!/bin/bash
62
-
63
- #{build_commands.join("\n")}
64
- BASH_SCRIPT
65
- end
66
67
def load_config!
68
ci_config.tap do |config|
69
# Set missing sections to the proper defaults
0 commit comments