Skip to content

Commit

Permalink
make linters happy
Browse files Browse the repository at this point in the history
Signed-off-by: ahcorde <ahcorde@gmail.com>
  • Loading branch information
ahcorde committed May 14, 2021
1 parent bbae88c commit 407515a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zip.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ bool Zip::Extract(const std::string &_src,
common::changeFromUnixPath(entryname);
std::string dst = ignition::common::joinPaths(_dst, entryname);

// Check if the entryname contains a / at the end. if so it's a directory
// Check if the entryname contains a / at the end. if so it's a directory
auto pos = entryname.rfind(ignition::common::separator(""));
if (pos != std::string::npos && pos == (entryname.size() - 1))
{
Expand Down

0 comments on commit 407515a

Please sign in to comment.