mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix dictionary key typo
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
813d4dcae7
commit
9c44ccc9db
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ def define_jobs(
|
|||
wfh.write("De-selecting the 'test-pkg' job.\n")
|
||||
jobs["test-pkg"] = False
|
||||
|
||||
if not jobs["test"] and not jobs["pkg-test"]:
|
||||
if not jobs["test"] and not jobs["test-pkg"]:
|
||||
with open(github_step_summary, "a", encoding="utf-8") as wfh:
|
||||
for job in (
|
||||
"build-source-tarball",
|
||||
|
|
Loading…
Add table
Reference in a new issue