From 1b6a478eb286706146c613df98d7cfbdc1be99f9 Mon Sep 17 00:00:00 2001 From: Jez Cope Date: Wed, 3 Feb 2021 16:25:50 +0000 Subject: [PATCH] Include hidden files (.well-known) in IPFS deploy --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 49d1bd2..ce6b630 100644 --- a/tasks.py +++ b/tasks.py @@ -32,7 +32,7 @@ def deploy(c, clean=False): s.text = "add to IPFS" s.start() result = c.run( - f"ipfs add --recursive --quieter {CONFIG['deploy-dir']}", + f"ipfs add --recursive --hidden --quieter {CONFIG['deploy-dir']}", hide=True, ) new_hash = result.stdout.rstrip()