Skip to content

Commit d9e30c1

Browse files
committed
skip empty shell names
1 parent cd0b1f2 commit d9e30c1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def trigger_auto_tests(
5858
tc_user: str,
5959
tc_password: str,
6060
) -> bool:
61-
supported_shells = list(map(str.strip, supported_shells.split(";")))
61+
supported_shells = list(filter(bool, map(str.strip, supported_shells.split(";"))))
6262
is_success = main(
6363
supported_shells=supported_shells,
6464
automation_project_id=automation_project_id,

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

0 commit comments

Comments
 (0)