Resolve KNOWN-ISSUES.md: suppress tar verbose output and explicit GPG stdout#5
Resolve KNOWN-ISSUES.md: suppress tar verbose output and explicit GPG stdout#5
Conversation
Co-authored-by: 8r4n <125826979+8r4n@users.noreply.github.com>
|
@copilot review the changes |
Here's a review of the changes made in commit Change 1 – Suppress byte-code output ( ✅ Correct. The Change 2 – Explicit GPG stdout ( ✅ Correct and defensive. In some GPG versions or batch configurations, without Change 3 – Comment correction ✅ The old comment Change 4 – Remove ✅ Both documented issues are resolved, so removing the file is the right outcome per the problem statement. Scope assessment: The diff is minimal — 4 lines changed in |
Two documented issues in
KNOWN-ISSUES.md: unwanted file-listing output cluttering the console during archiving, and GPG not reliably writing encrypted output through the pipeline.Changes
Suppress byte-code output: Removed
-vfromtar -cvf -→tar -cf -. The verbose flag was writing every archived filename to stderr, appearing as raw noise in the terminal during archive creation.Explicit GPG stdout: Added
--output -to both GPG pipeline commands (symmetric and signing). Without it, GPG output destination is implicit; this pins it to stdout unconditionally, ensuring the encrypted binary flows through the pipeline correctly across all environments.Fix misleading comment:
--signproduces an embedded signed message, not a detached signature (--detach-signdoes that). Comment corrected.Remove
KNOWN-ISSUES.md: Both issues resolved.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.