# File lib/rake.rb, line 748 748: def safe_ln(*args) 749: unless LN_SUPPORTED[0] 750: cp(*args) 751: else 752: begin 753: ln(*args) 754: rescue StandardError, NotImplementedError => ex 755: LN_SUPPORTED[0] = false 756: cp(*args) 757: end 758: end 759: end