fixed formatting

This commit is contained in:
Valerie Wolfe 2024-07-02 13:53:55 -04:00
parent 7fab543476
commit 4f66db254c

View file

@ -35,6 +35,7 @@ fn main() {
Some("full") Some("full")
=> { => {
operation::build(&targets, template_dir, &config); operation::build(&targets, template_dir, &config);
println!();
operation::apply(&targets); operation::apply(&targets);
}, },
@ -52,7 +53,7 @@ usage: oink [operation]
oink operations: oink operations:
apply Copies the last built files to their destination paths. apply Copies the last built files to their destination paths.
build Runs oink preprocessing on configuration files. build Runs oink preprocessing on configuration files.
full Runs 'build' and 'apply'"); full Runs 'build' and 'apply'");
} }