summaryrefslogtreecommitdiff
path: root/bin/menus-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/menus-build.sh')
-rwxr-xr-xbin/menus-build.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/menus-build.sh b/bin/menus-build.sh
new file mode 100755
index 0000000..0ac3a92
--- /dev/null
+++ b/bin/menus-build.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+CONFIG_FILE=$1
+DIRECTORY=$2
+mkdir -p $DIRECTORY/players
+find $DIRECTORY -type d -not -name _\* |
+ while read HTMLDIR
+ do
+ python scripts/menus-compile.py $CONFIG_FILE $DIRECTORY $HTMLDIR > $HTMLDIR/.menu.html
+ done