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:
parent
67e77b1f4e
commit
5a24dd2760
1 changed files with 4 additions and 3 deletions
|
@ -49,15 +49,16 @@ install_source() {
|
||||||
test -e $final_path/bin/python3 || python3 -m venv $final_path
|
test -e $final_path/bin/python3 || python3 -m venv $final_path
|
||||||
|
|
||||||
# Install pgadmin in virtualenv
|
# Install pgadmin in virtualenv
|
||||||
set +u;
|
u_arg='u'
|
||||||
|
set +$u_arg;
|
||||||
source $final_path/bin/activate
|
source $final_path/bin/activate
|
||||||
set -u;
|
set -u;
|
||||||
pip3 install --upgrade pip
|
pip3 install --upgrade pip
|
||||||
pip3 install --upgrade 'Werkzeug<1.0'
|
pip3 install --upgrade 'Werkzeug<1.0'
|
||||||
pip3 install --upgrade pgadmin$app_main_version==$app_sub_version
|
pip3 install --upgrade pgadmin$app_main_version==$app_sub_version
|
||||||
set +u;
|
set +$u_arg;
|
||||||
deactivate
|
deactivate
|
||||||
set -u;
|
set -$u_arg;
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue