From ceafacd373dca7d959cc582faa6da207e4a081cb Mon Sep 17 00:00:00 2001 From: nmosisi1 Date: Wed, 2 Oct 2024 19:16:26 +0200 Subject: [PATCH] feat: add optional deletion prompts for associated files and other fixes --- .github/workflows/ci.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84641d1..2187a4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Install dependencies run: | - brew install jq whiptail + brew install jq newt - name: Make script executable run: chmod +x ./application_size_checker.sh diff --git a/README.md b/README.md index 8221566..4c77277 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,11 @@ chmod +x ./application_size_checker.sh The script relies on several tools. Install them via Homebrew: ```bash -brew install jq whiptail +brew install jq newt ``` jq: Parses JSON output from system commands. - whiptail: Provides terminal-based GUI dialogs (for interactive selection and progress bars). + newt: Provides terminal-based GUI dialogs (for interactive selection and progress bars). ### Step 4: Run the Script