From 91b4d644cf8064457d5365dc1642ad8ab5f87be3 Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 7 Sep 2017 14:25:25 +0200 Subject: Pre-generating menu content for ranking pages --- bin/write-menus.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bin/write-menus.sh') diff --git a/bin/write-menus.sh b/bin/write-menus.sh index 33ae144..500db52 100755 --- a/bin/write-menus.sh +++ b/bin/write-menus.sh @@ -1,4 +1,9 @@ #!/bin/bash CONFIG_FILE=$1 DIRECTORY=$2 -find $DIRECTORY -name \*.html -exec python scripts/static-menu.py $CONFIG_FILE {} $DIRECTORY \; +mkdir -p $DIRECTORY/players +find $DIRECTORY -type d -not -name _\* | + while read HTMLDIR + do + python scripts/generate-static-menu.py $CONFIG_FILE $DIRECTORY $HTMLDIR > $HTMLDIR/.menu.html + done -- cgit v1.2.3