From 81ed4348df4068e0004cafc5bf5e878f7157c593 Mon Sep 17 00:00:00 2001 From: tabcat Date: Tue, 28 Sep 2021 01:38:28 -0500 Subject: [PATCH] fix path to ipfs bundle --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9d4d8ff..1bf21e6 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,10 @@ build: test mkdir -p examples/browser/lib/ npm run build cp dist/orbitdb.min.js examples/browser/lib/orbitdb.min.js - cp node_modules/ipfs/dist/index.min.js examples/browser/lib/ipfs.min.js + cp node_modules/ipfs/index.min.js examples/browser/lib/ipfs.min.js cp dist/orbitdb.js examples/browser/lib/orbitdb.js cp dist/orbitdb.js.map examples/browser/lib/orbitdb.js.map - cp node_modules/ipfs/dist/index.min.js examples/browser/lib/ipfs.js + cp node_modules/ipfs/index.min.js examples/browser/lib/ipfs.js @echo "Build success!" @echo "Output: 'dist/', 'examples/browser/'"