From b9b24a4a3899c810dd0843d730a3b88d4e0b9ef4 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Thu, 7 Mar 2024 09:14:53 -0800 Subject: [PATCH] Fix redirect for samples/videoUploadingWebCodecs I fixed this once but then a later change broke it --- build/tools/copy.js | 1 + {sample => samples}/videoUploadingWebCodecs/index.html | 0 2 files changed, 1 insertion(+) rename {sample => samples}/videoUploadingWebCodecs/index.html (100%) diff --git a/build/tools/copy.js b/build/tools/copy.js index 456f7e90..c2b7f7bc 100644 --- a/build/tools/copy.js +++ b/build/tools/copy.js @@ -7,6 +7,7 @@ copyAndWatch( { src: 'public/**/*', srcPrefix: 'public', dst: 'out' }, { src: 'meshes/**/*', dst: 'out' }, { src: 'sample/**/*', dst: 'out' }, + { src: 'samples/**/*', dst: 'out' }, { src: 'shaders/**/*', dst: 'out' }, { src: 'index.html', dst: 'out' }, ], diff --git a/sample/videoUploadingWebCodecs/index.html b/samples/videoUploadingWebCodecs/index.html similarity index 100% rename from sample/videoUploadingWebCodecs/index.html rename to samples/videoUploadingWebCodecs/index.html