aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-10-23 12:39:42 +0100
committerMike McQuaid2013-10-23 12:42:20 +0100
commitd9f74c48e3cf4dea9940e67f1341cb7c01dc4c62 (patch)
tree3442af776d56ee4e41486c06701ce20435ca341a /Library
parentef2b0bed77d8e7e994629ca7baf4dc11b7f8dc53 (diff)
downloadhomebrew-d9f74c48e3cf4dea9940e67f1341cb7c01dc4c62.tar.bz2
installer: don't try and unlink nil tabfile.
Closes #23472.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index a7b233cf3..0a6277384 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -534,7 +534,7 @@ class FormulaInstaller
return if stdlibs.empty?
tab = Tab.for_formula(f)
- tab.tabfile.unlink
+ tab.tabfile.unlink if tab.tabfile
# It's technically possible for the same lib to link to multiple C++ stdlibs,
# but very bad news. Right now we don't track this woeful scenario.
tab.stdlib = stdlibs.first