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:
parent
42db2ac21b
commit
0e6e603fb0
1 changed files with 4 additions and 0 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue