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

fix warnings

This commit is contained in:
yalh76 2022-02-28 03:42:38 +01:00
parent f9dfc52b4b
commit 290dd78de2
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ pushd "$final_path"
pip install -r requirements.txt
mkdir -p "${final_path}"/lcl/{repos,remotes,attachments,releases}
ynh_add_config --template="../conf/alembic.ini" --destination="$final_path/alembic.ini"
ynh_exec_warn_less PAGURE_CONFIG=${final_path}/pagure.cfg python createdb.py --initial alembic.ini
PAGURE_CONFIG=${final_path}/pagure.cfg python createdb.py --initial alembic.ini 2>&1
popd
ynh_replace_string --match_string="validators.Required" --replace_string="validators.DataRequired" --target_file="$final_path/pagure/forms.py"

View file

@ -170,7 +170,7 @@ pushd "$final_path"
pip install -r requirements.txt
mkdir -p "${final_path}"/lcl/{repos,remotes,attachments,releases}
ynh_add_config --template="../conf/alembic.ini" --destination="$final_path/alembic.ini"
ynh_exec_warn_less PAGURE_CONFIG=${final_path}/pagure.cfg alembic upgrade head
PAGURE_CONFIG=${final_path}/pagure.cfg alembic upgrade head 2>&1
popd
ynh_replace_string --match_string="validators.Required" --replace_string="validators.DataRequired" --target_file="$final_path/pagure/forms.py"