Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn on unknown command line arguments #98895

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 6, 2024

  1. Warn on unknown command line arguments

    This eases troubleshooting when working with command line arguments.
    
    Warnings are only printed if the argument does not exist as a file
    or directory path (relative or absolute). This allows positional arguments
    to keep working as they are now, without printing warnings when a project
    reads positional arguments to perform operations on files (e.g. when
    drag-and-dropping a file onto a project executable).
    
    This now prints a warning:
    
        godot --non-existent-argument
    
    This still doesn't print a warning, as it's an user argument:
    
        godot -- --non-existent-argument
    
    This doesn't print a warning if the file/folder path exists:
    
        godot /path/to/file.txt
    
    A warning is still printed if the file/folder doesn't exist. Drag-and-drop
    associations always refer to existing files/folders, so that scenario was
    unlikely to be encountered.
    Calinou committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    8379cc8 View commit details
    Browse the repository at this point in the history