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

Standalone Ignition Gazebo executables #694

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
make linters happy
Signed-off-by: ahcorde <[email protected]>
  • Loading branch information
ahcorde committed Aug 24, 2021
commit 8faad98aa79f13fdcab7962bc8a641c2acd5e9e4
2 changes: 1 addition & 1 deletion src/cmd/model_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void addServerFlags(CLI::App &_app)
}, "All joints are printed. Requires the -m option");
allJointsOpt->needs(allJointsOpt);

auto allLinksOpt =_app.add_flag_callback("--all-links",
auto allLinksOpt = _app.add_flag_callback("--all-links",
[opt](){
opt->allLinks = true;
}, "All links are printed. Requires the -m option");
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/server_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void runServerCommand(const ServerOptions &_opt)
if (!resourcePathEnv.empty())
{
auto resourcePaths = ignition::common::split(resourcePathEnv, ":");
for (auto & resourcePath: resourcePaths)
for (auto & resourcePath : resourcePaths)
{
std::string filePath = ignition::common::joinPaths(
resourcePath, _opt.file);
Expand Down