summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/.groups1
-rwxr-xr-xscripts/generate.sh7
-rwxr-xr-xscripts/sync.sh7
3 files changed, 15 insertions, 0 deletions
diff --git a/scripts/.groups b/scripts/.groups
new file mode 100644
index 0000000..0251426
--- /dev/null
+++ b/scripts/.groups
@@ -0,0 +1 @@
+eklasa
diff --git a/scripts/generate.sh b/scripts/generate.sh
new file mode 100755
index 0000000..4a42d36
--- /dev/null
+++ b/scripts/generate.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+cd $(dirname $0)
+cd ..
+cat scripts/.groups | while read GROUP
+do
+ python2 scripts/jfrteamy-playoff/playoff.py $GROUP.jtpo -v
+done
diff --git a/scripts/sync.sh b/scripts/sync.sh
new file mode 100755
index 0000000..de16acd
--- /dev/null
+++ b/scripts/sync.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+cd $(dirname $0)
+cd ../output
+lftp << EOF
+ open -u ${LIGA_PLAYOFF_FTP_USER},${LIGA_PLAYOFF_FTP_PASS} ${LIGA_PLAYOFF_FTP_HOST}
+ mirror -R . ${LIGA_PLAYOFF_FTP_PATH}
+EOF