mirror of
https://github.com/YunoHost-Apps/pgadmin_ynh.git
synced 2024-09-03 19:56:38 +02:00
Fix ynh_read_manifest helper
This commit is contained in:
parent
effd760f8b
commit
e994c44294
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ ynh_psql_test_if_first_run() {
|
|||
ynh_read_manifest () {
|
||||
manifest="$1"
|
||||
key="$2"
|
||||
python3 -c "import sys, json;print(json.load(open('$manifest'))['$key'])"
|
||||
python3 -c "import sys, json;print(json.load(open('$manifest', encoding='utf-8'))['$key'])"
|
||||
}
|
||||
|
||||
# Read the upstream version from the manifest
|
||||
|
|
Loading…
Add table
Reference in a new issue