Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
command: |
# Upload build dir to cluster.ipfs.io
hash=$(ipfs-cluster-ctl \
--quietest \

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hsanjuan using --quietest on ipfs-cluster-ctl here causes

Incorrect Usage. flag provided but not defined: -quietest

did i use it wrong?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry --quieter, -Q Write only final hash to output

--host /dnsaddr/cluster.ipfs.io \
--basic-auth $CLUSTER_USER:$CLUSTER_PASSWORD \
add --rmin 3 --rmax 3 --name "$DOMAIN" \
--recursive /tmp/workspace/$BUILD_DIR | tail -n1 | cut -d " " -f 2 )
add --name "$DOMAIN build $CIRCLE_BUILD_NUM" \
--recursive /tmp/workspace/$BUILD_DIR )

preview_url=https://ipfs.io/ipfs/$hash

Expand Down