Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3289bcdf authored by Rob Lemley's avatar Rob Lemley Committed by Philipp Kewisch
Browse files

[CI] Set a default for skip argumennt in environment creation script.

Prevent 'NoneType' is not iterable error when not set.
parent 68875129
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -381,7 +381,7 @@ def main():
    )
    parser.add_argument("--branch", "-b", help="Branch to limit the environment to")
    parser.add_argument(
        "--skip", "-s", action="append", help="In all mode, skip this environment"
        "--skip", "-s", action="append", help="In all mode, skip this environment", default=[]
    )

    args = parser.parse_args()