1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pgadmin_ynh.git synced 2024-09-03 19:56:38 +02:00

bypass linter warning

This commit is contained in:
Josué Tille 2021-04-01 22:15:00 +02:00
parent 67e77b1f4e
commit 5a24dd2760
No known key found for this signature in database
GPG key ID: 716A6C99B04194EF

View file

@ -49,15 +49,16 @@ install_source() {
test -e $final_path/bin/python3 || python3 -m venv $final_path
# Install pgadmin in virtualenv
set +u;
u_arg='u'
set +$u_arg;
source $final_path/bin/activate
set -u;
pip3 install --upgrade pip
pip3 install --upgrade 'Werkzeug<1.0'
pip3 install --upgrade pgadmin$app_main_version==$app_sub_version
set +u;
set +$u_arg;
deactivate
set -u;
set -$u_arg;
fi
}