# File lib/rake.rb, line 755 755: def safe_ln(*args) 756: unless LN_SUPPORTED[0] 757: cp(*args) 758: else 759: begin 760: ln(*args) 761: rescue StandardError, NotImplementedError 762: LN_SUPPORTED[0] = false 763: cp(*args) 764: end 765: end 766: end