Update README.md

This commit is contained in:
Knugi
2026-01-02 05:35:59 +00:00
committed by GitHub
parent 5b488359c8
commit 17e927ffd6

View File

@@ -268,19 +268,13 @@ To ensure that the binaries provided in the releases were built directly from th
### Using Bash (Linux/WSL/macOS)
```bash
for file in wtsexporter*; do
gh attestation verify "$file" -R KnugiHK/WhatsApp-Chat-Exporter
done
for file in wtsexporter*; do ; gh attestation verify "$file" -R KnugiHK/WhatsApp-Chat-Exporter; done
```
### Using PowerShell (Windows)
```powershell
$files = Get-ChildItem -Path "wtsexporter*"
foreach ($file in $files) {
gh attestation verify "$($file.FullName)" -R KnugiHK/WhatsApp-Chat-Exporter
}
gci "wtsexporter*" | % { gh attestation verify $_.FullName -R KnugiHK/WhatsApp-Chat-Exporter }
```