We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d15e37 commit d6e1846Copy full SHA for d6e1846
1 file changed
src/uipath/_cli/cli_push.py
@@ -84,7 +84,12 @@ async def create_resources(studio_client: StudioClient):
84
else:
85
name_resource_value = bindings_resource.value.get("name")
86
folder_path_resource_value = bindings_resource.value.get("folderPath")
87
- assert name_resource_value and folder_path_resource_value
+
88
+ if not folder_path_resource_value:
89
+ # guardrail resource, nothing to import
90
+ continue
91
92
+ assert name_resource_value
93
resource_name = name_resource_value.default_value
94
folder_path = folder_path_resource_value.default_value
95
0 commit comments