From 65921f217203ae00ccb4165d59408c75aced5add Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Dec 2025 22:19:43 +0000 Subject: [PATCH 1/3] Initial plan From a71ee04b84cbf3eb5096b45d951f8e68808624bf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Dec 2025 22:24:03 +0000 Subject: [PATCH 2/3] Add GitHub CLI installation support Co-authored-by: rmw <363764+rmw@users.noreply.github.com> --- github/install.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 github/install.sh diff --git a/github/install.sh b/github/install.sh new file mode 100755 index 00000000000..c34d402fd0c --- /dev/null +++ b/github/install.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# +# GitHub CLI +# +# This installs GitHub CLI (gh) using Homebrew. + +if test $(command -v brew); then + if test ! $(command -v gh) + then + echo ' Installing GitHub CLI (gh)...' + brew install gh + fi +fi + +exit 0 From b78e4e2cc0d6a8b80b2f0c7066a5d4e064f65936 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Dec 2025 22:26:01 +0000 Subject: [PATCH 3/3] Remove shebang and exit statement for consistency Co-authored-by: rmw <363764+rmw@users.noreply.github.com> --- github/install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/github/install.sh b/github/install.sh index c34d402fd0c..e0a25e5cf68 100755 --- a/github/install.sh +++ b/github/install.sh @@ -1,4 +1,3 @@ -#!/bin/sh # # GitHub CLI # @@ -11,5 +10,3 @@ if test $(command -v brew); then brew install gh fi fi - -exit 0