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