Explorar o código

Fix sum targets in Rakefile

Douglas Thrift %!s(int64=3) %!d(string=hai) anos
pai
achega
a3fd273e3c
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      Rakefile

+ 2 - 1
Rakefile

@@ -68,7 +68,8 @@ end
   desc "Show the #{sum.upcase} sums of the distfiles"
   task sum do
     sh "mkdir -p #{distdir}" unless distdir.exist?
-    sh "#{sum} #{distdir.join('*')}"
+    files = distdir.glob('**/*').select {|dist| dist.file?}.map {|dist| dist.relative_path_from(portsdir)}
+    sh "#{sum} #{files.join(' ')}" unless files.empty?
   end
 end