@@ -77,7 +77,12 @@ fn main() {
7777 fs:: create_dir_all ( write_path) . unwrap ( ) ;
7878 let output_path = write_path. join ( file_name) ;
7979 match appimage. write_entry ( & desktop, & output_path) {
80- Ok ( _) => log ! ( args. quiet, "Wrote {} to {}" , desktop. path. display( ) , output_path. display( ) ) ,
80+ Ok ( _) => log ! (
81+ args. quiet,
82+ "Wrote {} to {}" ,
83+ desktop. path. display( ) ,
84+ output_path. display( )
85+ ) ,
8186 Err ( e) => elog ! ( args. quiet, "Failed to write desktop: {}" , e) ,
8287 }
8388 } else {
@@ -94,7 +99,12 @@ fn main() {
9499 fs:: create_dir_all ( write_path) . unwrap ( ) ;
95100 let output_path = write_path. join ( file_name) ;
96101 match appimage. write_entry ( & icon, & output_path) {
97- Ok ( _) => log ! ( args. quiet, "Wrote {} to {}" , icon. path. display( ) , output_path. display( ) ) ,
102+ Ok ( _) => log ! (
103+ args. quiet,
104+ "Wrote {} to {}" ,
105+ icon. path. display( ) ,
106+ output_path. display( )
107+ ) ,
98108 Err ( e) => elog ! ( args. quiet, "Failed to write icon: {}" , e) ,
99109 }
100110 } else {
@@ -111,7 +121,12 @@ fn main() {
111121 fs:: create_dir_all ( write_path) . unwrap ( ) ;
112122 let output_path = write_path. join ( file_name) ;
113123 match appimage. write_entry ( & appstream, & output_path) {
114- Ok ( _) => log ! ( args. quiet, "Wrote {} to {}" , appstream. path. display( ) , output_path. display( ) ) ,
124+ Ok ( _) => log ! (
125+ args. quiet,
126+ "Wrote {} to {}" ,
127+ appstream. path. display( ) ,
128+ output_path. display( )
129+ ) ,
115130 Err ( e) => elog ! ( args. quiet, "Failed to write appstream: {}" , e) ,
116131 }
117132 } else {
0 commit comments