aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-04-05 22:06:52 -0500
committerJack Nagel2013-04-05 22:07:11 -0500
commit16c5fb6663615286416131da0e2dc7cde0ae89af (patch)
tree6fa94e81278841ef05202d4c9fe6a00538529b49 /Library
parent0dbfedb4b71e6af65d389ff36273513be96767a3 (diff)
downloadhomebrew-16c5fb6663615286416131da0e2dc7cde0ae89af.tar.bz2
FormulaLock: fix uninitialized ivar
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_lock.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_lock.rb b/Library/Homebrew/formula_lock.rb
index 183c2dd9c..3b3807fd8 100644
--- a/Library/Homebrew/formula_lock.rb
+++ b/Library/Homebrew/formula_lock.rb
@@ -4,6 +4,7 @@ class FormulaLock
def initialize(name)
@name = name
@path = LOCKDIR.join("#{@name}.brewing")
+ @lockfile = nil
end
def lock