diff --git a/src/cli/commands/export.rs b/src/cli/commands/export.rs index 4c28adb..8528a45 100644 --- a/src/cli/commands/export.rs +++ b/src/cli/commands/export.rs @@ -20,6 +20,17 @@ pub async fn execute( log::info!("Exporting all profiles"); } + // Handle --no-server flag + if args.no_server { + log::info!("Server content will be excluded from export"); + } + + // Handle --show-io-errors flag + let show_io_errors = args.show_io_errors; + if show_io_errors { + log::info!("IO errors will be shown during export"); + } + let lockfile_dir = lockfile_path.parent().unwrap_or(Path::new(".")); let config_dir = config_path.parent().unwrap_or(Path::new("."));