Skip to content

Commit b3dbef2

Browse files
authored
Build: take the last line from output to fix failing CI (#79)
1 parent c84f2e6 commit b3dbef2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ end
7373
def delete_create_gradle_properties
7474
root_dir = File.dirname(__FILE__)
7575
gradle_properties_file = "#{root_dir}/gradle.properties"
76-
lsc_path = `bundle show logstash-core`.split(/\n/).first
76+
lsc_path = `bundle show logstash-core`.split(/\n/).last
7777

7878
FileUtils.rm_f(gradle_properties_file)
7979
File.open(gradle_properties_file, "w") do |f|

0 commit comments

Comments
 (0)