add tasks print-env
This commit is contained in:
parent
e805a4ca5a
commit
ad8105ca94
1 changed files with 3 additions and 0 deletions
|
@ -72,6 +72,9 @@ async fn main() {
|
|||
println!("Done!");
|
||||
}
|
||||
"migrate" => cmd_migrate().await,
|
||||
"print-env" => {
|
||||
std::env::vars().for_each(|(key, value)| println!("{}={}", key, value));
|
||||
}
|
||||
_ => {
|
||||
println!("Unknown command: {}", command);
|
||||
cmd_help();
|
||||
|
|
Loading…
Add table
Reference in a new issue