Update Fleet-maintained apps - #46561
Conversation
Generated automatically with cmd/maintained-apps.
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.
Tip: disable this comment in your organization's Code Review settings.
Script Diff Resultsee/maintained-apps/outputs/amazon-workspaces/darwin.json=== Install Script (no changes) ===
=== Uninstall // c393d9c9 -> 8e0aba36 ===
--- /tmp/old.UYBlaf 2026-06-01 13:55:15.726393654 +0000
+++ /tmp/new.KXTJRp 2026-06-01 13:55:15.727393669 +0000
@@ -128,6 +128,31 @@
fi
local trash="/Users/$logged_in_user/.Trash"
+
+ # If the target contains glob characters, expand it and move each match.
+ if [[ "$target_file" == *[*?[]* ]]; then
+ local file file_name
+ local matched=false
+ local i=0
+ # compgen -G expands the (quoted) pattern itself, so paths containing
+ # spaces glob correctly; reading line by line keeps each match intact.
+ while IFS= read -r file; do
+ [[ -n "$file" ]] || continue
+ [[ -e "$file" || -L "$file" ]] || continue
+ matched=true
+ i=$((i + 1))
+ file_name="$(basename "$file")"
+ echo "removing $file."
+ # The per-match counter keeps matches that share a basename from
+ # overwriting each other in the trash.
+ mv -f "$file" "$trash/${file_name}_${timestamp}_${rand}_${i}"
+ done < <(compgen -G "$target_file" 2>/dev/null)
+ if [[ "$matched" == false ]]; then
+ echo "$target_file doesn't exist."
+ fi
+ return
+ fi
+
local file_name="$(basename "${target_file}")"
if [[ -e "$target_file" ]]; thenee/maintained-apps/outputs/google-gemini/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughThis PR updates configuration for two macOS maintained-app entries. Amazon WorkSpaces receives an uninstall script reference change that enhances the Possibly related PRs
🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit