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

Merge pull request #370 from YunoHost-Apps/cleanup_install

Cleanup install/upgrade source
This commit is contained in:
Josue-T 2023-03-06 12:28:36 +01:00 committed by GitHub
commit dadf0b9d46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}