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

Fix migration with missing package_check

This commit is contained in:
Salamandar 2024-03-15 16:12:29 +01:00
parent 42db2ac21b
commit 0e6e603fb0

View file

@ -78,6 +78,10 @@ if [[ "$cluster" == "cluster" ]] || [[ "$cluster" == "no" ]]; then
ynh_app_setting_set --app="$app" --key="cluster" --value="$cluster"
fi
if [ ! -d "$install_dir/package_check" ]; then
ynh_exec_as "$app" git clone https://github.com/YunoHost/package_check "$install_dir/package_check"
fi
# Remove Pythonz
ynh_secure_remove --file="$install_dir/.pythonz"