Change install to sync (with sync semantics) (#24)

For better separate at this stage (and following `pip-tools`), it's now
`puffin sync`, and it assumes `--no-deps`.
This commit is contained in:
Charlie Marsh 2023-10-06 15:42:58 -04:00 committed by GitHub
parent ff8e24a621
commit dab70a661a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 70 additions and 39 deletions

View file

@ -1,10 +1,10 @@
use std::process::ExitCode;
pub(crate) use compile::compile;
pub(crate) use install::install;
pub(crate) use sync::sync;
mod compile;
mod install;
mod sync;
#[derive(Copy, Clone)]
pub(crate) enum ExitStatus {