We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b546157 + ecb69b7 commit 6142331Copy full SHA for 6142331
ipfs-websites/pin-websites.sh
@@ -42,10 +42,10 @@ for s in $websites; do
42
oldcid=`grep "| $s |" pinset.txt | cut -d ' ' -f 1`
43
newcid=$(basename `ipfs resolve -r "/ipns/$s"`) # remove /ipfs prefix
44
if [[ "$oldcid" == "$newcid" ]]; then
45
- echo "$s already pinned in latest version"
+ echo "already pinned in latest version: $s"
46
continue
47
fi
48
- echo "pinning $s"
+ echo "pinning: $s"
49
ipfs-cluster-ctl $@ pin add --no-status --name "$s" "$newcid"
50
if [[ -n "$oldcid" && ("$newcid" != "$oldcid") ]]; then
51
echo "unpinning old version: $oldcid"
0 commit comments