From 17e927ffd675391a8b02c51aff1d9ead9fcbe072 Mon Sep 17 00:00:00 2001 From: Knugi <24708955+KnugiHK@users.noreply.github.com> Date: Fri, 2 Jan 2026 05:35:59 +0000 Subject: [PATCH] Update README.md --- README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4cdc31a..a2eff56 100644 --- a/README.md +++ b/README.md @@ -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 } ```