From a3f78410d160afca883b92b78dc1ba4e4f5d5a3b Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Tue, 15 Oct 2024 21:42:03 -0400 Subject: [PATCH] Rename ros2-gz example Remove example from the name to match the others. --- examples/{ros2-gz-example.nix => ros2-gz.nix} | 0 flake.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{ros2-gz-example.nix => ros2-gz.nix} (100%) diff --git a/examples/ros2-gz-example.nix b/examples/ros2-gz.nix similarity index 100% rename from examples/ros2-gz-example.nix rename to examples/ros2-gz.nix diff --git a/flake.nix b/flake.nix index e43c944f27..fe578fc02c 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ devShells = { example-turtlebot3-gazebo = import ./examples/turtlebot3-gazebo.nix { inherit pkgs; }; example-ros2-basic = import ./examples/ros2-basic.nix { inherit pkgs; }; - example-ros2-gz = import ./examples/ros2-gz-example.nix { inherit pkgs; }; + example-ros2-gz = import ./examples/ros2-gz.nix { inherit pkgs; }; }; }) // { overlays.default = import ./overlay.nix;