Skip to content

Commit a1bf84e

Browse files
authored
Fixed Gemfile to permit development with local Logstash clone (#82)
Fix path Logstash path to be retrieved from `LOGSTASH_PATH` environment variable
1 parent 232849e commit a1bf84e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec
44

5-
logstash_path = "../../logstash"
5+
logstash_path = ENV['LOGSTASH_PATH'] || '../../logstash'
66

77
if Dir.exist?(logstash_path) && ENV["LOGSTASH_SOURCE"] == "1"
88
gem 'logstash-core', :path => "#{logstash_path}/logstash-core"

0 commit comments

Comments
 (0)