rbbt-util 5.26.120 → 5.26.121
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 +2 -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: 2a5cb2eb838868b52ab690d47ed2a24239ff31be014719360217d6c10b7a167a
|
4
|
+
data.tar.gz: 29877df75518b145695d553c7467a0a37c1d670fa1f3e7106336d3b7a03e11b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a6025deb69b69d510be2fc3ca2405699ca9f21d6d71175bc9440ad0b372a1751003b4a8b0acd96898283f941eca0e7217ffb738c45cb996d28af3dc33b63fab
|
7
|
+
data.tar.gz: 141103c3fb5b63979f1880d1a9e8e6ded797d24ca7c826e441353aeb7dfed53fc42bd2dbaa1f02ff7732b8fbf60e2e6cc3a28330f781a806d42b1cb598ee29ae
|
@@ -65,7 +65,8 @@ 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
|
-
|
68
|
+
job_file_dir_content = Dir.glob(step.files_dir + '/**/*').any?
|
69
|
+
job_files += job_file_dir_content if job_file_dir_content
|
69
70
|
rec_dependencies = Set.new
|
70
71
|
next unless recursive
|
71
72
|
deps = [step.path]
|