From 2ecc958e61a1284b56cb1d170424a1df8a90b93a Mon Sep 17 00:00:00 2001 From: Leszek Pietrzak Date: Mon, 1 Oct 2018 09:55:12 +0200 Subject: [PATCH] fix fonts copying --- scripts/copy_fonts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy_fonts.py b/scripts/copy_fonts.py index e6dc0db303..9756456582 100644 --- a/scripts/copy_fonts.py +++ b/scripts/copy_fonts.py @@ -21,7 +21,7 @@ def copy_fonts(): for file in glob.glob("./node_modules/font-awesome/fonts/*.*"): print(file) shutil.copy(file, dest_dir) - for file in glob.glob("./node_modules/roboto-fontface/fonts/*.wof*"): + for file in glob.glob("./node_modules/roboto-fontface/fonts/roboto/*.wof*"): print(file) shutil.copy(file, dest_dir)