-
Notifications
You must be signed in to change notification settings - Fork 6
Add diagnostics #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add diagnostics #40
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -47,6 +47,9 @@ if [ "$1" = "--debug" ]; then | |||||
| set -x | ||||||
| fi | ||||||
|
|
||||||
| # TEMPORARY | ||||||
| DEBUG=1 | ||||||
|
Comment on lines
+50
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion | 🟠 Major | ⚡ Quick win Remove the temporary default This makes the diagnostic path opt-out instead of opt-in and also forces the extra Proposed fix-# TEMPORARY
-DEBUG=1📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| # FALLBACK_BRANCH may be unset. | ||||||
| if [ "$1" = "--upstream-branch" ]; then | ||||||
| shift | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep the diagnostics checkout out of
/tmp/plume-scripts.git-clone-relatedchecks/tmp/plume-scriptsfirst (git-clone-related, Lines 114-118), so this step changes what later tests exercise—they now reuse the preseeded checkout instead of covering the script's own bootstrap path.Proposed fix
- name: git-changes run: | mkdir -p /tmp - git -C /tmp clone --depth=1 -q https://github.com/plume-lib/plume-scripts.git - /tmp/plume-scripts/git-changes --debug + git -C /tmp clone --depth=1 -q https://github.com/plume-lib/plume-scripts.git plume-scripts-diagnostics + /tmp/plume-scripts-diagnostics/git-changes --debug🤖 Prompt for AI Agents