mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 10:38:41 -04:00
Bug: ddns-updater ignores unknown arguments #489
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @maruel on GitHub (Jan 23, 2025).
TLDR: Running
ddns-updater --unknown-argumentruns ignoring unknown argumentsIssue
Because of the way the arguments are treated as if they were environment variables, all arguments are processed even if they are not defined nor used.
This is a problem when someone does a typo in the argument, as the typo'ed argument will be silently ignored. This is very confusing for users.
Proposal