mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
Require shellwords in artifact rake task (#17319)
The https://github.com/elastic/logstash/pull/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.
This commit is contained in:
parent
0d931a502a
commit
964468f922
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@
|
|||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
require 'shellwords'
|
||||
|
||||
namespace "artifact" do
|
||||
SNAPSHOT_BUILD = ENV["RELEASE"] != "1"
|
||||
VERSION_QUALIFIER = ENV["VERSION_QUALIFIER"].to_s.strip.empty? ? nil : ENV["VERSION_QUALIFIER"]
|
||||
|
|
Loading…
Add table
Reference in a new issue