From eabff8c20aa3328503c6e850ca5b82b753eb6046 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 13:26:14 +0000 Subject: [PATCH 1/2] Initial plan From 4bf263ea333d156e90c50d0ea190cb36d6328001 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 13:31:48 +0000 Subject: [PATCH 2/2] Fix #50: Add verbose output for GitHub repository install/update Add fprintf messages before and after downloading a GitHub repository so users see progress in the command window. Follows the same pattern used by installFexPackage.m. Co-authored-by: ehennestad <17237719+ehennestad@users.noreply.github.com> --- code/+matbox/+setup/+internal/installGithubRepository.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/+matbox/+setup/+internal/installGithubRepository.m b/code/+matbox/+setup/+internal/installGithubRepository.m index f93170e..7a1a6da 100644 --- a/code/+matbox/+setup/+internal/installGithubRepository.m +++ b/code/+matbox/+setup/+internal/installGithubRepository.m @@ -85,6 +85,10 @@ if ~isfolder(repoTargetFolder); mkdir(repoTargetFolder); end % Download repository + if options.Verbose + fprintf('Please wait, downloading "%s"...', repositoryUrl) + end + downloadUrl = sprintf( '%s/archive/refs/heads/%s.zip', repositoryUrl, branchName ); repoTargetFolder = matbox.setup.internal.downloadZippedGithubRepo(downloadUrl, repoTargetFolder, true, true); @@ -92,7 +96,7 @@ repoTargetFolder, repositoryName, ownerName, branchName) if options.Verbose - fprintf('Installed "%s".\n', repositoryUrl) + fprintf('Done.\n') end % Run setup.m if present.