# File lib/fpm/package.rb, line 251 def staging_path(path=nil) @staging_path ||= ::Dir.mktmpdir("package-#{type}-staging") #, ::Dir.pwd) if path.nil? return @staging_path else return File.join(@staging_path, path) end end