Fix build script to properly add mobile apps

This commit is contained in:
tycrek 2020-05-25 09:46:50 -06:00
parent 0f7d5eb867
commit 56bf409793
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ const BUILD_SECTION = {
webBasedProducts: () => generateCategorySection('Web-based products', readYaml()['web based products']),
operatingSystems: () => generateCategorySection('Operating systems', readYaml()['operating systems']),
desktopApps: () => generateCategorySection('Desktop apps', readYaml()['desktop applications']),
mobileApps: () => generateCategorySection('Mobile apps', readYaml()['desktop applications']),
mobileApps: () => generateCategorySection('Mobile apps', readYaml()['mobile applications']),
hardware: () => generateCategorySection('Hardware', readYaml()['hardware']),
useful: () => '# Useful links, tools, and advice',
resources: () => readFile('md/_resources.md'),