rbbt-util 5.26.130 → 5.26.131
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/workflow.rb +1 -2
- 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: 13467fdef9b1dc72001f8373f88b4996364878049869f3f4e73661d5e2709194
|
|
4
|
+
data.tar.gz: df31108776baec2b1633899fa72bc31fa646eccbd36ba0d4ee5bab05190aea1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06ee4e1a38408e11312db1bbf3995e43041270002c1d2dde278a3d8fd75f9da08f5a8b3e66026a7d7b2f7b07f0684188696f2159c8f18d26d2aa0d2629c4b60c
|
|
7
|
+
data.tar.gz: 041b9f61405a84cf5845aaec01350fcd4bca79200b373051254ce8c7d488df91a1e9f747cee15d15401660b4a1aa3e7acc5849f22af10a11c22664987c97c144
|
data/lib/rbbt/workflow.rb
CHANGED
|
@@ -193,8 +193,7 @@ module Workflow
|
|
|
193
193
|
|
|
194
194
|
Log.info{"Loading workflow #{wf_name}"}
|
|
195
195
|
require_local_workflow(wf_name) or
|
|
196
|
-
(Workflow.autoinstall and `rbbt workflow install #{Misc.snake_case(wf_name)}` and require_local_workflow(
|
|
197
|
-
raise("Workflow not found or could not be loaded: #{ wf_name }")
|
|
196
|
+
(Workflow.autoinstall and `rbbt workflow install #{Misc.snake_case(wf_name)} || rbbt workflow install #{wf_name}` and require_local_workflow(wf_name)) or raise("Workflow not found or could not be loaded: #{ wf_name }")
|
|
198
197
|
begin
|
|
199
198
|
Misc.string2const Misc.camel_case(wf_name)
|
|
200
199
|
rescue
|