From 34d024a7b6e6e48b0ff635c07fb6fa1ea64b8912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Octavio=20Amuch=C3=A1stegui?= Date: Thu, 16 Dec 2021 13:53:30 -0300 Subject: [PATCH] Fix: build src path in dist This fix the demo build to place the src files in the right folder "src". --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f144692..95ad542 100755 --- a/build.sh +++ b/build.sh @@ -9,5 +9,5 @@ cp node_modules/react/dist/JSXTransformer.js dist/lib/ cp node_modules/director/build/director.js dist/lib/ cp node_modules/orbit-db/dist/orbitdb.min.js dist/lib/ cp node_modules/ipfs/dist/index.min.js dist/lib/ipfs.min.js -cp -R src/ dist/ +cp -R src/ dist/src cp index.dist.html dist/index.html