Skip to content

Commit 964468f

Browse files
authored
Require shellwords in artifact rake task (elastic#17319)
The elastic#17310 PR changed the rake task for artifact creation to use shellwords from standard library. The acceptance tests need to explitily load that library. This commit updates the rake file to handle loading the required code.
1 parent 0d931a5 commit 964468f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rakelib/artifacts.rake

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
require 'shellwords'
19+
1820
namespace "artifact" do
1921
SNAPSHOT_BUILD = ENV["RELEASE"] != "1"
2022
VERSION_QUALIFIER = ENV["VERSION_QUALIFIER"].to_s.strip.empty? ? nil : ENV["VERSION_QUALIFIER"]

0 commit comments

Comments
 (0)