Skip to content

Commit

Permalink
fix fonts copying
Browse files Browse the repository at this point in the history
  • Loading branch information
magicznyleszek committed Oct 1, 2018
1 parent 0599733 commit 2ecc958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/copy_fonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 2ecc958

Please sign in to comment.