From f6d764861968aa2cd6a59a999a0983295ecb0a6b Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 23 Aug 2022 20:02:37 +0200 Subject: [PATCH] more verbosity --- tools/VOEUX.refresh.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/VOEUX.refresh.sh b/tools/VOEUX.refresh.sh index bf4e5e19..a18ffdf5 100755 --- a/tools/VOEUX.refresh.sh +++ b/tools/VOEUX.refresh.sh @@ -15,7 +15,7 @@ ME="${0##*/}" ############################################ -## WORLD VOEUX +echo "## WORLD VOEUX" for voeu in $(ls ~/.zen/game/world/); do @@ -57,10 +57,11 @@ do # [[ "$QUOI" != "" ]] && ipfs key rm $voeu && rm -Rf ~/.zen/game/world/$voeu && rm -Rf ~/.zen/game/players/$PLAYER/voeux/$voeu && echo "SUPRESSION OK" fi + echo "$W : http://127.0.0.1:8080/ipns/$voeuns" done ############################################ -## PLAYER TW +echo "## PLAYER TW" for PLAYER in $(ls ~/.zen/game/players/); do echo "PLAYER : $PLAYER" @@ -80,6 +81,9 @@ for PLAYER in $(ls ~/.zen/game/players/); do TW=$(ipfs add -rHq ~/.zen/game/players/$PLAYER/ipfs/moa/ | tail -n 1) ipfs name publish --key=$PLAYER /ipfs/$TW + echo "$PLAYER : http://127.0.0.1:8080/ipns/$ASTRONAUTENS" + + done exit 0