Skip to content

Commit

Permalink
Update AlevinUtils.hpp
Browse files Browse the repository at this point in the history
Remove extra ":" from `salmon_version` in `cmd_info.json`
  • Loading branch information
rob-p committed Sep 27, 2021
1 parent 98870fd commit 9112976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/AlevinUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace alevin{
OrderedOptionsT& orderedOptions) {
std::ofstream os(cmdInfoPath.string());
cereal::JSONOutputArchive oa(os);
oa(cereal::make_nvp("salmon_version:", std::string(salmon::version)));
oa(cereal::make_nvp("salmon_version", std::string(salmon::version)));
for (auto& opt : orderedOptions.options) {
if (opt.value.size() == 1) {
oa(cereal::make_nvp(opt.string_key, opt.value.front()));
Expand Down

0 comments on commit 9112976

Please sign in to comment.