aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-ipfs-files-cp
blob: 6ae766e25ddb1e026c7935fb0e2f404de4536425 (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