Commit 39cbd8c5 authored by Casey Strouse's avatar Casey Strouse Committed by GitHub

Replace use of deprecated function (#3863)

parent eeab4cf1
......@@ -4,7 +4,7 @@ CREW_VERSION = '1.3.0'
ARCH = `uname -m`.strip
ARCH_LIB = if ARCH == 'x86_64' then 'lib64' else 'lib' end
LIBC_VERSION = if File.exists? "/#{ARCH_LIB}/libc-2.27.so" then '2.27' else '2.23' end
LIBC_VERSION = if File.exist? "/#{ARCH_LIB}/libc-2.27.so" then '2.27' else '2.23' end
if ENV['CREW_PREFIX'].to_s == ''
CREW_PREFIX = '/usr/local'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment