aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-ipfs-key-list
blob: b36cba177e77fde4921a1c6180f9205c5f6c9541 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
PROGRAM="$(basename $0)"
ipfs key list
if [ "$?" != "0" ]
then
    ak-logthis "$PROGRAM" "ERROR" "Failed to get key list"
    exit 1
fi