Skip to content

Commit

Permalink
fixup! GitHub issue template: Don't require steps to reproduce
Browse files Browse the repository at this point in the history
  • Loading branch information
adombeck committed Aug 26, 2024
1 parent 40c32a9 commit 882df64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ body:
Copy this command and run it in a terminal. It will open a text editor with the system information and logs. Paste the output below. Redact any sensitive information from the logs.
```bash
TMPFILE=$(mktemp authd-system-info-XXXXXX.md)
if command -v xdg-open > /dev/null && [ -n "${DISPLAY:-}" ]; then authd_editor=xdg-open; elif [ -n "${EDITOR:-}" ]; then authd_editor=$EDITOR; else authd_editor=editor; fi
cat > "$TMPFILE" <<EOF && $authd_editor "$TMPFILE"
if command -v xdg-open > /dev/null && [ -n "${DISPLAY:-}" ]; then authd_editor=xdg-open; elif [ -n "${EDITOR:-}" ]; then authd_editor=$EDITOR; fi
cat > "$TMPFILE" <<EOF && ${authd_editor:-editor} "$TMPFILE"
#### authd version
\`\`\`
$(/usr/libexec/authd version)
Expand Down

0 comments on commit 882df64

Please sign in to comment.