Files
starface-outlook-sync-addin/node_modules/office-addin-dev-certs/scripts/uninstall.sh
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

6 lines
167 B
Bash

#!/bin/bash
hashes=$(security find-certificate -c "$1" -a -Z | grep SHA-1 | awk '{ print $NF }')
for hash in $hashes; do
security delete-certificate -Z $hash
done