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.
AppManager/openbsd/appmanager

8 lines
198 B
Plaintext

#!/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"