Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,3 +420,8 @@ Please read the [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and the [Bount

---
*Documentation improved for readability.*


---

*This line was added to improve documentation consistency.*
2 changes: 1 addition & 1 deletion miners/power8/fingerprint_checks_power8.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def check_simd_identity() -> Tuple[bool, Dict]:
if not flags and ("ppc" in arch or "power" in arch):
try:
result = subprocess.run(
["grep", "-i", "vsx\|altivec\|dfp", "/proc/cpuinfo"],
["grep", "-iE", "vsx|altivec|dfp", "/proc/cpuinfo"],
capture_output=True, text=True, timeout=5
)
if result.stdout:
Expand Down