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.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
DB=$(mktemp -t appmgr_db.XXXXXXXXXXXXXX)
|
|
|
|
|
|
|
|
python3 /usr/local/share/AppManager/build_json.py > "$DB"
|
|
|
|
/usr/local/bin/godot --src /usr/local/share/AppManager/project.godot -- "$DB"
|
|
|
|
rm "$DB"
|