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 c757145 commit 42491a6Copy full SHA for 42491a6
1 file changed
validate-spice
@@ -85,6 +85,8 @@ def main():
85
is_valid = []
86
if args.all:
87
for file_path in os.listdir("."):
88
+ if any(char.isspace() for char in file_path):
89
+ raise CheckError(f"Invalid whitespace in path '{file_path}'")
90
if os.path.isdir(file_path) and not file_path.startswith("."):
91
is_valid.append(validate_xlet(file_path))
92
elif args.uuid:
0 commit comments