From edef6508bd9f8fcac7e461a8081892549c151e36 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 6 Apr 2014 18:12:02 +0100 Subject: [PATCH] pathname: use ln_sf in install_symlink. Closes Homebrew/homebrew#28136. --- Library/Homebrew/extend/pathname.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index b8868adfef..40f1826140 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -83,7 +83,7 @@ class Pathname src = Pathname(src).expand_path(self) dst = join File.basename(new_basename) mkpath - FileUtils.ln_s src.relative_path_from(dst.parent), dst + FileUtils.ln_sf src.relative_path_from(dst.parent), dst end protected :install_symlink_p