# File lib/rake/file_utils.rb, line 90 90: def safe_ln(*args) 91: unless LN_SUPPORTED[0] 92: cp(*args) 93: else 94: begin 95: ln(*args) 96: rescue StandardError, NotImplementedError 97: LN_SUPPORTED[0] = false 98: cp(*args) 99: end 100: end 101: end