From d647cdb08eb258967f1ad40284de06422061cba9 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Thu, 25 Aug 2022 17:02:47 +0200 Subject: [PATCH] Print pull request title and URL in command-line --- src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.rs b/src/app.rs index b9c1f8a..133ff66 100644 --- a/src/app.rs +++ b/src/app.rs @@ -212,6 +212,8 @@ impl eframe::App for TemplateApp { } ui.horizontal(|ui| { if ui.button("Apply PR").clicked() { + println!("Attempting to install \"{}\"", pr_title); + println!("from: {}", pr_url); let apply_pr = if pr_url.contains("NorthstarLauncher") { apply_launcher_pr } else {