From f012dd5f318641efac3efbbe3e13b8811098cb02 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 23 Apr 2018 11:28:01 +0100 Subject: [PATCH] Fix favicon In removing 'media' here, it changed the meaning of the copy so the contents of vector-icons (rather than the dir itself) got copied to webapp/ --- scripts/copy-res.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy-res.js b/scripts/copy-res.js index f7a52c6e3..a7cebc348 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -50,7 +50,7 @@ const COPY_LIST = [ ["res/home.html", "webapp"], ["res/home-status.html", "webapp"], ["res/home/**", "webapp/home"], - ["res/vector-icons/**", "webapp"], + ["res/vector-icons/**", "webapp/vector-icons"], ["node_modules/matrix-react-sdk/res/{fonts,img,themes}/**", "webapp"], ["res/themes/**", "webapp/themes"], ["node_modules/emojione/assets/svg/*", "webapp/emojione/svg/"],