You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
241 B
Bash
15 lines
241 B
Bash
5 months ago
|
#!/bin/sh
|
||
|
|
||
|
if ! [ -e apidetails.csv ]; then
|
||
|
|
||
|
./download-fw.sh
|
||
|
./extract.sh $(cat fwname)
|
||
|
DIR=./firmware/www/tool/
|
||
|
|
||
|
echo "tool_directory: $DIR
|
||
|
app_config_directory: ." > config.yml
|
||
|
|
||
|
python get_codes.py
|
||
|
|
||
|
./cleanup.sh
|
||
|
fi
|