We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b2cad commit ae49c7cCopy full SHA for ae49c7c
nodes.py
@@ -66,6 +66,8 @@ def exec(self, prep_res):
66
67
# Convert dict to list of tuples: [(path, content), ...]
68
files_list = list(result.get("files", {}).items())
69
+ if len(files_list) == 0:
70
+ raise(ValueError("Failed to fetch files"))
71
print(f"Fetched {len(files_list)} files.")
72
return files_list
73
0 commit comments