automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-05-24 07:30:51 +00:00 committed by github-actions[bot]
parent 3d9ddac237
commit d51c4dde90
1 changed files with 4 additions and 1 deletions

View File

@ -67,7 +67,10 @@ fn main() {
for data_source in &cli.data_source { for data_source in &cli.data_source {
let data_source: PathBuf = PathBuf::from(data_source); let data_source: PathBuf = PathBuf::from(data_source);
if data_source.is_dir() { if data_source.is_dir() {
warn!("'{:?}' is a directory and cannot be dumped, skipping", data_source); warn!(
"'{:?}' is a directory and cannot be dumped, skipping",
data_source
);
// std::process::exit(1); // std::process::exit(1);
continue; continue;
} }