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

Fix typo on var

This commit is contained in:
Josué Tille 2024-05-31 17:29:45 +02:00
parent d3e56921fa
commit 29c8d51ad1
No known key found for this signature in database
GPG key ID: 5F259226AD51F2F5

View file

@ -37,7 +37,7 @@ install_source() {
# Fix multi-instance support
for f in "$install_dir"/venv/bin/*; do
if ! [[ $f =~ "__" ]]; then
ynh_replace_special_string --match_string='#!'/opt/yunohost/pgadmin/venv --replace_string='#!'"$code_dir"/venv --target_file="$f"
ynh_replace_special_string --match_string='#!'/opt/yunohost/pgadmin/venv --replace_string='#!'"$install_dir"/venv --target_file="$f"
fi
done
else