Skip to content

Commit

Permalink
Fix linter (#1)
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <addisu@openrobotics.org>
  • Loading branch information
azeey committed Mar 21, 2024
1 parent a1d7bb7 commit e966f17
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ Any contribution that you make to this repository will
be under the Apache 2 License, as dictated by that
[license](http://www.apache.org/licenses/LICENSE-2.0.html):

~~
~~~
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
~~
~~~

Contributors must sign-off each commit by adding a `Signed-off-by: ...`
line to commit messages to certify that they have the right to submit
Expand Down
4 changes: 2 additions & 2 deletions gz_sim_vendor-extras.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ get_target_property(components @LIB_NAME@@LIB_VER_MAJOR@::requested INTERFACE_LI

foreach(component ${components})
# Skip the core library
if (${component} STREQUAL @LIB_NAME@@LIB_VER_MAJOR@::@LIB_NAME@@LIB_VER_MAJOR@)
if(${component} STREQUAL @LIB_NAME@@LIB_VER_MAJOR@::@LIB_NAME@@LIB_VER_MAJOR@)
continue()
endif()

# Skip the -all target
if (${component} STREQUAL @LIB_NAME@@LIB_VER_MAJOR@::@LIB_NAME@@LIB_VER_MAJOR@-all)
if(${component} STREQUAL @LIB_NAME@@LIB_VER_MAJOR@::@LIB_NAME@@LIB_VER_MAJOR@-all)
continue()
endif()

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<depend>sdformat_vendor</depend>

<!-- Depend on the package we are vendoring to allow building it from source -->
<build_depend condition="$GZ_BUILD_FROM_SOURCE != ''">gz-sim</build_depend>
<depend condition="$GZ_BUILD_FROM_SOURCE != ''">gz-sim8</depend>

<test_depend>ament_cmake_copyright</test_depend>
<test_depend>ament_cmake_lint_cmake</test_depend>
Expand Down

0 comments on commit e966f17

Please sign in to comment.