From daa91d145ccf2a57cd9842c2e99cb2353fbbceec Mon Sep 17 00:00:00 2001 From: Adam Rabjerg Date: Wed, 23 Apr 2025 20:52:59 +0200 Subject: [PATCH] Added --show-trace --- rebuild.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rebuild.sh b/rebuild.sh index 7808bc9..2a446ab 100755 --- a/rebuild.sh +++ b/rebuild.sh @@ -12,10 +12,11 @@ function build { git status echo -e "\nWhat do you want to do? [1-4]" -select yn in "Build" "Build and Upgrade" "Commit and push" "Exit"; do +select yn in "Build" "Build and Upgrade" "Build and Upgrade --show-trace" "Commit and push" "Exit"; do case $yn in Build ) build;; "Build and Upgrade" ) build --upgrade;; + "Build and Upgrade --show-trace" ) build --show-trace --upgrade;; "Commit and push" ) git commit -a && git push && exit;; Exit ) exit;; esac