rbbt-util 5.23.30 → 5.23.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rbbt/util/misc/format.rb +1 -0
- data/lib/rbbt/util/simpleopt/doc.rb +2 -1
- data/lib/rbbt/workflow/accessor.rb +1 -1
- data/lib/rbbt/workflow/archive.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 109bb2daf8846d12be60271835c62b41d57000ef
|
|
4
|
+
data.tar.gz: 73fc3ca6821a320f3b8e6ff8e557aa3265183383
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0dddc6c05a96c78ea6fdb696e5a46c3ce4e29a02867c2a58f7d8751f34da99cfc40051ad3564bcf5d910929c9b61ae9dd3f65a13d14020793cc049d97e39f8b0
|
|
7
|
+
data.tar.gz: 71c62ea2ef84428217180c01ea7b5b8c4207e3475cfad5f6deefee636c332cb82e05aa02c85de7ec496b8d179feedd634c9bf55fb61bfbf656527f7e7f7515a8
|
|
@@ -40,7 +40,8 @@ module SOPT
|
|
|
40
40
|
else
|
|
41
41
|
"=<#{ type }>"
|
|
42
42
|
end
|
|
43
|
-
extra << " (default: #{Array === default ? (default.length > 3 ? default[0..2]*", " + ', ...' : default*", " ): default})" if default != nil
|
|
43
|
+
#extra << " (default: #{Array === default ? (default.length > 3 ? default[0..2]*", " + ', ...' : default*", " ): default})" if default != nil
|
|
44
|
+
extra << " (default: #{Misc.fingerprint(default)})" if default != nil
|
|
44
45
|
input_str << Log.color(:green, extra)
|
|
45
46
|
end
|
|
46
47
|
|
|
@@ -391,7 +391,7 @@ class Step
|
|
|
391
391
|
(defined?(WorkflowRESTClient) && WorkflowRESTClient::RemoteStep === dep) ||
|
|
392
392
|
! Open.exists?(dep.info_file) ||
|
|
393
393
|
(dep.path && (Open.exists?(dep.path) || Open.remote?(dep.path))) ||
|
|
394
|
-
((dep.error? || dep.aborted?) && (! dep.recoverable_error? || canfail_paths.include?(dep.path)))
|
|
394
|
+
((dep.error? || dep.aborted? || dep.waiting?) && (! dep.recoverable_error? || canfail_paths.include?(dep.path)))
|
|
395
395
|
}
|
|
396
396
|
end
|
|
397
397
|
|
|
@@ -6,7 +6,9 @@ class Step
|
|
|
6
6
|
task = File.basename(File.dirname(path)) if task.nil?
|
|
7
7
|
workflow = File.basename(File.dirname(File.dirname(path))) if workflow.nil?
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
return if target_dir[workflow][task][name].exists? || File.symlink?(target_dir[workflow][task][name].find)
|
|
10
|
+
Log.debug "Linking #{ path }"
|
|
11
|
+
FileUtils.mkdir_p target_dir[workflow][task] unless target_dir[workflow][task].exists?
|
|
10
12
|
FileUtils.ln_s path, target_dir[workflow][task][name].find
|
|
11
13
|
FileUtils.ln_s path + '.files', target_dir[workflow][task][name].find + '.files' if File.exists?(path + '.files')
|
|
12
14
|
FileUtils.ln_s path + '.info', target_dir[workflow][task][name].find + '.info' if File.exists?(path + '.info')
|