Fix path to default config
infra/updatebot/pipeline/head This commit looks good Details

We use YAML now instead of TOML, so the name of the default
configuration file should reflect that.
master
Updatebot 2024-09-08 11:02:15 -05:00 committed by Dustin C. Hatch
parent 6f3ceaba66
commit d228a905eb
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ def parse_args() -> Arguments:
'--config',
'-c',
type=Path,
default=XDG_CONFIG_HOME / 'updatebot' / 'config.toml',
default=XDG_CONFIG_HOME / 'updatebot' / 'config.yml',
)
parser.add_argument('--dry-run', '-n', action='store_true', default=False)
parser.add_argument('projects', metavar='project', nargs='*', default=[])