This commit is contained in:
parent
965071c2b7
commit
8f481a779a
2 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
jq -c '.[]' ./gen/main.json | while IFS=$'\n' read L; do
|
||||
jq -c '.[]' ./gen/main.json && true | while IFS=$'\n' read L; do
|
||||
TITLE=`printf "$L" | jq -r '.title'`
|
||||
DESCRIPTION=`printf "$L" | jq -r '.description'`
|
||||
FILTER=`printf "$L" | jq -r '.filter'`
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
mkdir -p build &&
|
||||
cp -r ./www ./build/www &&
|
||||
sh ./scr/wbmp-fallback.sh &&
|
||||
sh ./gen/main.sh
|
||||
sh ./gen/main.sh &&
|
||||
true
|
||||
|
|
Loading…
Reference in a new issue