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