mirror of
https://github.com/YunoHost-Apps/retroarch_ynh.git
synced 2024-09-03 20:16:12 +02:00
21 lines
478 B
Bash
21 lines
478 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source /usr/share/yunohost/helpers
|
|
source _common.sh
|
|
|
|
app=__APP__
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
|
|
ynh_use_nodejs
|
|
cd $final_path/assets/frontend/bundle/
|
|
../../../indexer > .index-xhr
|
|
cd $final_path/assets/cores
|
|
../../indexer > .index-xhr
|
|
|