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

Merge pull request #11 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2022-03-13 18:55:36 +01:00 committed by GitHub
commit a95c96afe3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ Omeka S is a web publication system for universities, galleries, libraries, arch
- Connect to the semantic Web
- Share with DPLA
**Shipped version:** 3.1.1~ynh3
**Shipped version:** 3.1.2~ynh1
**Demo:** https://omeka.org/s/download/#sandbox

View file

@ -18,7 +18,7 @@ Omeka S is a web publication system for universities, galleries, libraries, arch
- Connect to the semantic Web
- Share with DPLA
**Version incluse :** 3.1.1~ynh3
**Version incluse :** 3.1.2~ynh1
**Démo :** https://omeka.org/s/download/#sandbox

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/omeka/omeka-s/releases/download/v3.1.1/omeka-s-3.1.1.zip
SOURCE_SUM=5b0a3518a0a6e0fadc3489088c561718e88053cacba2cd09c5be5993afe17b4d
SOURCE_URL=https://github.com/omeka/omeka-s/releases/download/v3.1.2/omeka-s-3.1.2.zip
SOURCE_SUM=08c6db4cbe6b6c08fc10229dce825141b053f0c2e9980244650e67fb040bc1f6
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Web publication system for universities, galleries, libraries, archives, and museums",
"fr": "Système de publication Web pour les universités, les galeries, les bibliothèques, les archives et les musées"
},
"version": "3.1.1~ynh3",
"version": "3.1.2~ynh1",
"url": "https://omeka.org/",
"upstream": {
"license": "AGPL-3.0-only",

View file

@ -57,7 +57,7 @@ set__fpm_footprint() {
}
set__free_footprint() {
if [ "$fpm_footprint" = "specific" ]
if [ "$fpm_footprint" == "specific" ]
then
ynh_app_setting_set --app=$app --key=fpm_footprint --value="$free_footprint"
fi
@ -72,7 +72,7 @@ ynh_app_config_validate() {
if [ "${changed[fpm_usage]}" == "true" ] || [ "${changed[fpm_footprint]}" == "true" ] || [ "${changed[free_footprint]}" == "true" ]; then
# If fpm_footprint is set to 'specific', use $free_footprint value.
if [ "$fpm_footprint" = "specific" ]
if [ "$fpm_footprint" == "specific" ]
then
fpm_footprint=$free_footprint
fi