Skip to content

Commit

Permalink
Migrate path to .gz
Browse files Browse the repository at this point in the history
Signed-off-by: methylDragon <methylDragon@gmail.com>
  • Loading branch information
methylDragon committed Jun 4, 2022
1 parent 26e045d commit bac0829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usd/src/cmd/sdf2usd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ std::string FindResources(const std::string &_uri)
const std::string type = gz::common::lowercase(tokens[3]);
const std::string modelName = gz::common::lowercase(tokens[4]);
path = gz::common::joinPaths(
home, ".ignition", "fuel", server, owner, type, modelName);
home, ".gz", "fuel", server, owner, type, modelName);
}
else
{
path = gz::common::joinPaths(home, ".ignition", "fuel");
path = gz::common::joinPaths(home, ".gz", "fuel");
}

auto fileName = gz::common::basename(uri.Path().Str());
Expand Down

0 comments on commit bac0829

Please sign in to comment.