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

Migrate ign CLI Release #5

Merged
merged 1 commit into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ubuntu/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ Depends: ruby | ruby-interpreter,
Breaks: ignition-tools
Replaces: ignition-tools
Multi-Arch: same
Description: Entry point for using all the suite of ignition tools - app
Ignition tools provide the ign command line tool that accepts multiple
Description: Entry point for using all the suite of Gazebo tools - app
Gazebo tools provide the gz command line tool that accepts multiple
subcommands. Each subcommand is implemented in a plugin that belongs to a
specific Ignition project.
.
Package contains the ign app
Package contains the gz app

Package: libignition-tools2-dev
Architecture: any
Expand All @@ -42,7 +42,7 @@ Breaks: libignition-tools-dev
Replaces: libignition-tools-dev
Multi-Arch: same
Description: Entry point for using all the suite of ignition tools - cmake support
Ignition tools provide the ign command line tool that accepts multiple
Ignition tools provide the gz command line tool that accepts multiple
subcommands. Each subcommand is implemented in a plugin that belongs to a
specific Ignition project.
.
Expand Down
1 change: 1 addition & 0 deletions ubuntu/debian/ignition-tools.install
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
usr/bin/*
usr/lib/*/libignition-tools[0-99]-backward.so
etc/ign.bash_completion.sh => /usr/share/bash-completion/completions/ign
etc/gz.bash_completion.sh => /usr/share/bash-completion/completions/gz
6 changes: 3 additions & 3 deletions ubuntu/debian/tests/build
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ set -e
WORKDIR=$(mktemp -d)
trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
cd $WORKDIR
# Check the presence of ign tool in PATH
which ign
echo "check ign: OK"
# Check the presence of gz tool in PATH
which gz
echo "check gz: OK"