# File lib/rake/alt_system.rb, line 84 84: def system(cmd, *args) 85: repaired = ( 86: if args.empty? 87: [repair_command(cmd)] 88: elsif runnable = find_runnable(cmd) 89: [File.expand_path(runnable), *args] 90: else 91: # non-existent file 92: [cmd, *args] 93: end 94: ) 95: kernel_system(*repaired) 96: end