bin/ix-file-exists in ix-cli-0.0.19 vs bin/ix-file-exists in ix-cli-0.0.20

- old
+ new

@@ -1,9 +1,9 @@ #!/usr/bin/env ruby STDIN.each_line do |line| - if File.exists?(line.chomp) + if File.exist?(line.chomp) puts "yes #{line.chomp}" else puts " no #{line.chomp}" end end