File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
mithril-client-cli/src/commands/tools Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -120,18 +120,24 @@ impl SnapshotConverterCommand {
120
120
& distribution_dir,
121
121
)
122
122
. await
123
- . with_context ( || {
124
- "Failed to download 'snapshot-converter' binary from Cardano node distribution"
125
- } ) ?;
123
+ . with_context ( || "Failed to download Cardano node distribution" ) ?;
126
124
125
+ println ! (
126
+ "Unpacking distribution from archive: {}" ,
127
+ archive_path. display( )
128
+ ) ;
127
129
ArchiveUnpacker :: default ( )
128
130
. unpack ( & archive_path, & distribution_dir)
129
131
. with_context ( || {
130
132
format ! (
131
- "Failed to unpack 'snapshot-converter' binary to directory: {}" ,
133
+ "Failed to unpack distribution to directory: {}" ,
132
134
distribution_dir. display( )
133
135
)
134
136
} ) ?;
137
+ println ! (
138
+ "Distribution unpacked successfully to: {}" ,
139
+ distribution_dir. display( )
140
+ ) ;
135
141
136
142
Self :: convert_ledger_state_snapshot (
137
143
& work_dir,
You can’t perform that action at this time.
0 commit comments