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

Cleanup install/upgrade source

This commit is contained in:
Josué Tille 2023-03-06 08:34:48 +01:00
parent 48abc6a3c0
commit eb3d09b662
No known key found for this signature in database
GPG key ID: 716A6C99B04194EF

View file

@ -53,23 +53,13 @@ install_sources() {
pip3 install --upgrade setuptools wheel pip
fi
temp_requirement=$(mktemp)
cp $YNH_APP_BASEDIR/conf/requirement_$(lsb_release --codename --short).txt $temp_requirement
chown $synapse_user:root $temp_requirement
chown $synapse_user:root -R $final_path
pip3 install --upgrade cffi ndg-httpsclient psycopg2 lxml jinja2
sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade -r $temp_requirement
ynh_secure_remove $temp_requirement
pip3 install --upgrade -r $YNH_APP_BASEDIR/conf/requirement_$(lsb_release --codename --short).txt
# This function was defined when we called "source $final_path/bin/activate". With this function we undo what "$final_path/bin/activate" does
set +$u_arg;
deactivate
set -$u_arg;
# Remove Rust to reduce backup size
ynh_secure_remove --file=$final_path/.rustup
ynh_secure_remove --file=$final_path/.cargo
fi
}