Add with-env command (#1717)

This commit is contained in:
Jonathan Turner
2020-05-06 15:56:31 +12:00
committed by GitHub
parent 22e70478a4
commit b37e420c7c
13 changed files with 153 additions and 12 deletions

View File

@ -119,6 +119,7 @@ pub(crate) mod version;
pub(crate) mod what;
pub(crate) mod where_;
pub(crate) mod which_;
pub(crate) mod with_env;
pub(crate) mod wrap;
pub(crate) use autoview::Autoview;
@ -241,4 +242,5 @@ pub(crate) use version::Version;
pub(crate) use what::What;
pub(crate) use where_::Where;
pub(crate) use which_::Which;
pub(crate) use with_env::WithEnv;
pub(crate) use wrap::Wrap;