mirror of
https://github.com/YunoHost-Apps/omeka-s_ynh.git
synced 2024-09-03 19:56:05 +02:00
3.1.2
This commit is contained in:
parent
31b967782a
commit
9dd4a9bfed
3 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue