Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Fischer authored Feb 4, 2023
1 parent 4925dde commit 8be7ab8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vinca/templates/build_ament_python.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
pushd $SRC_DIR/$PKG_NAME/src/work

# If there is a setup.cfg that contains install-scripts then we should not set it here
grep -q "install[-_]scripts" setup.cfg
if [ $? -eq 0 ]; then
result=$?
grep -q "install[-_]scripts" setup.cfg || true
if [ $result -eq 0 ]; then
INSTALL_SCRIPTS_ARG=""
else
# Remove e.g. ros-humble- from PKG_NAME
Expand Down

0 comments on commit 8be7ab8

Please sign in to comment.