From 2595123e12ada68624cd4833e9a05050e14b1993 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 26 Sep 2024 23:31:48 +0200 Subject: [PATCH] Ignore --compare in the "Automatically generated" comment --- ros2nix/ros2nix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ros2nix/ros2nix.py b/ros2nix/ros2nix.py index 616b440..c015633 100755 --- a/ros2nix/ros2nix.py +++ b/ros2nix/ros2nix.py @@ -449,6 +449,7 @@ def ros2nix(args): arg for arg in sys.argv[1:] if not (arg.endswith("package.xml") and os.path.isfile(arg)) + and arg != "--compare" ] ) derivation_text = f"# Automatically generated by: {our_cmd_line}\n"