Skip to content

Commit

Permalink
Recognize 'none' option to avoid unnecessary warning (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenrparsons authored Nov 17, 2023
1 parent 13e2486 commit 7a9144d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/src/Packager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ VolumeInfo GetVolumeInfo(const po::variables_map& parsed)
info.flipOption = Flip::ZFlip;
} else if (flip == "all") {
info.flipOption = Flip::All;
} else if (flip == "none") {
info.flipOption = Flip::None;
} else if (not flip.empty()) {
std::cerr << "Ignoring unrecognized flip option: " << flip << "\n";
}
Expand Down

0 comments on commit 7a9144d

Please sign in to comment.