+8
-2
upload/src/main.rs
+8
-2
upload/src/main.rs
···
275
275
)
276
276
.await?;
277
277
278
-
println!("Site is now updated. Live at {}", utils::site_handle(config.user));
278
+
println!(
279
+
"Site is now updated. Live at {}",
280
+
utils::site_handle(config.user)
281
+
);
279
282
} else {
280
283
let oauth = oauth::client::OAuthClient::with_memory_store();
281
284
let session = oauth
···
311
314
)
312
315
.await?;
313
316
314
-
println!("Site is now updated. Live at {}", utils::site_handle(config.user));
317
+
println!(
318
+
"Site is now updated. Live at {}",
319
+
utils::site_handle(config.user)
320
+
);
315
321
};
316
322
317
323
Ok(())