diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-12-23 15:51:23 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-12-23 21:11:29 -0500 |
commit | 3ca1e438fe602f3f03609ea6869b1de7a4091acc (patch) | |
tree | a0852f54e2ca4f5e83919e31e1385e2314715380 | |
parent | d5cf54c2a5650e70577ebdd9b07ae2bdb91bf104 (diff) |
lib/sitegen: remove extra parens
-rw-r--r-- | lib/sitegen.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sitegen.rb b/lib/sitegen.rb index 78222a3..4a3dd48 100644 --- a/lib/sitegen.rb +++ b/lib/sitegen.rb @@ -40,7 +40,7 @@ module Sitegen end @deps end - def self.Makefile() + def self.Makefile str = '' dependencies.each do |target, deps| str += "#{target.to_s}: #{deps.sort.join(' ')}\n" |