1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minetest_ynh.git synced 2024-09-03 20:36:00 +02:00

fix missing game

This commit is contained in:
yalh76 2022-07-19 23:22:01 +02:00
parent 09946f6d86
commit d50b9cebf9
2 changed files with 7 additions and 1 deletions

View file

@ -6,7 +6,7 @@
"en": "Free, open source voxel game engine and game. Need a client to connect to the server.", "en": "Free, open source voxel game engine and game. Need a client to connect to the server.",
"fr": "Moteur de jeu de type « bac à sable » gratuit et open source. Nécessite un client pour se connecter au serveur." "fr": "Moteur de jeu de type « bac à sable » gratuit et open source. Nécessite un client pour se connecter au serveur."
}, },
"version": "5.5.1~ynh1", "version": "5.5.1~ynh2",
"url": "http://www.minetest.net/", "url": "http://www.minetest.net/",
"upstream": { "upstream": {
"license": "MIT", "license": "MIT",

View file

@ -89,6 +89,12 @@ if [ -z $datadir ]; then
ynh_app_setting_delete --app=$app --key=home_path ynh_app_setting_delete --app=$app --key=home_path
fi fi
# If game doesn't exist, create it
if [ -z $game ]; then
game="minetest_game"
ynh_app_setting_set --app=$app --key=game --value=$game
fi
# Cleaning legacy permissions # Cleaning legacy permissions
if ynh_legacy_permissions_exists; then if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all ynh_legacy_permissions_delete_all