Remove an unnecessary use of ARGV.build_head?

This commit is contained in:
Jack Nagel 2014-06-15 23:31:58 -05:00
parent 5c24876d02
commit e91f359a56

View File

@ -364,7 +364,7 @@ end
class SubversionDownloadStrategy < VCSDownloadStrategy
def cache_tag
ARGV.build_head? ? "svn-HEAD" : "svn"
resource.version.head? ? "svn-HEAD" : "svn"
end
def repo_valid?