rbbt-util 5.26.126 → 5.26.128
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rbbt/workflow/util/archive.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85870393c1c103f06d9735b238aab094328240b38d0f0ad30dbbe6f8d19d7879
|
4
|
+
data.tar.gz: 7d837921237418c8f0f5614da56abfc3bcea83d6d158f2b5e1a6b09a3e9b1547
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52ba2be874b3c33fce21396d2882992336350143f7603a1e4dc89e7239444a3d18f9f239725496357534751c937f3d041d4b23f28331dd653e7e614085da8cb1
|
7
|
+
data.tar.gz: 83387128d0667be1768e4e2700a1f19faf831b5e0b9096ca60006f8d4cbabaa0a5040eb757507637d7c3f7060c82e6d6c576bfa4f726859c35d2a2d3ac3ef535
|
@@ -65,7 +65,7 @@ class Step
|
|
65
65
|
next unless File.exists?(step.path)
|
66
66
|
job_files << step.path
|
67
67
|
job_files << step.info_file if File.exists?(step.info_file)
|
68
|
-
job_file_dir_content = Dir.glob(step.files_dir + '/**/*')
|
68
|
+
job_file_dir_content = Dir.glob(step.files_dir + '/**/*').collect{|f| File.join(step.files_dir, f)}
|
69
69
|
job_files += job_file_dir_content
|
70
70
|
rec_dependencies = Set.new
|
71
71
|
next unless recursive
|