Fix guide2go binary; remove g2g json references (#24)

This commit is contained in:
taylorbourne
2020-08-20 14:58:43 -07:00
committed by GitHub
parent ce68f1ddee
commit fe4bb90631
4 changed files with 11 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ ENV PUID=1000 \
include_mlb=yes \ include_mlb=yes \
cdn=akc \ cdn=akc \
use_guide2go=no \ use_guide2go=no \
JsonList="CBLguide.json SATguide.json SATSport.json" \ YamlList="CBLguide.yaml SATguide.yaml SATSport.yaml" \
use_embyAPI=no \ use_embyAPI=no \
embyIP= \ embyIP= \
embyPORT=8096 \ embyPORT=8096 \

View File

@@ -39,14 +39,14 @@ fi
# run guide2go in a loop # run guide2go in a loop
if [ "$use_guide2go" = "yes" ]; then if [ "$use_guide2go" = "yes" ]; then
echo "Running guide2Go..." echo "Running guide2Go..."
for jsons in $JsonList for yamls in $YamlList
do do
jsonefile="${jsons%.*}" yamlfile="${yamls%.*}"
filecache=' "file.cache": "/guide2go/cache_'$jsons'",' filecache=' "file.cache": "/guide2go/cache_'$yamls'",'
fileoutput=' "file.output": "/guide2go/'$jsonefile'.xml",' fileoutput=' "file.output": "/guide2go/'$yamlfile'.xml",'
sed -i "/file.cache/c $filecache" /guide2go/$jsons sed -i "/file.cache/c $filecache" /guide2go/$yamls
sed -i "/file.output/c $fileoutput" /guide2go/$jsons sed -i "/file.output/c $fileoutput" /guide2go/$yamls
guide2go -config /guide2go/$jsons guide2go -config /guide2go/$yamls
done done
fi fi

Binary file not shown.

View File

@@ -18,12 +18,12 @@ cdn=akc
### Guide2go Config ### Guide2go Config
use_guide2go=no use_guide2go=no
## List of created lineup json files in /guide2go ## List of created lineup yaml files in /guide2go
# Exmaple with 3 lineups # Exmaple with 3 lineups
JsonList="CBLguide.json SATguide.json SATSport.json" YamlList="CBLguide.yaml SATguide.yaml SATSport.yaml"
## to create your lineups run the below command and follow the on-screen instructions ## to create your lineups run the below command and follow the on-screen instructions
# docker exec -it <yourdockername> guide2go -configure /guide2go/<lineupnamehere>.json # docker exec -it <yourdockername> guide2go -configure /guide2go/<lineupnamehere>.yaml
### Emby ### Emby
# Only necessary if xTeVe API is active # Only necessary if xTeVe API is active