Skip to content

Commit 7ba7fcd

Browse files
Merge pull request #1928 from jcantrill/1840274
Bug 1840274: Enable ruby from scl if exists
2 parents 8d9a211 + 63b7e77 commit 7ba7fcd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fluentd/wait_for_es_version.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#! /bin/bash
22

3-
ruby wait_for_es_version.rb $@
3+
if [ -f /opt/rh/rh-ruby25/enable ] ; then
4+
source /opt/rh/rh-ruby25/enable
5+
fi
6+
7+
ruby wait_for_es_version.rb $@

0 commit comments

Comments
 (0)