Skip to content

Commit

Permalink
Fix for #2910 (#2911)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusvniekerk committed Oct 13, 2023
1 parent 4e93b79 commit c32d3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micromamba/src/package.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ set_package_command(CLI::App* subcom, Configuration& config)
{
compression_level = 9;
}
dest = infile.substr(0, infile.size() - 8) + ".tar.bz2";
dest = infile.substr(0, infile.size() - 6) + ".tar.bz2";
}
Console::stream() << "Transmuting " << fs::absolute(infile) << " to " << dest
<< std::endl;
Expand Down

0 comments on commit c32d3ae

Please sign in to comment.