mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
Fixed helpers detection
This commit is contained in:
parent
96bce7d455
commit
97a567afb5
5 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@ source ./_common.sh
|
||||||
|
|
||||||
# Source YunoHost helpers if exists.
|
# Source YunoHost helpers if exists.
|
||||||
# If not, source backported helpers from file.
|
# If not, source backported helpers from file.
|
||||||
if [ -d "/usr/share/yunohost/helpers" ]; then
|
if [ -a "/usr/share/yunohost/helpers" ]; then
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
else
|
else
|
||||||
source ./_helpers.sh
|
source ./_helpers.sh
|
||||||
|
|
|
@ -20,7 +20,7 @@ source ./_common.sh
|
||||||
|
|
||||||
# Source YunoHost helpers if exists.
|
# Source YunoHost helpers if exists.
|
||||||
# If not, source backported helpers from file.
|
# If not, source backported helpers from file.
|
||||||
if [ -d "/usr/share/yunohost/helpers" ]; then
|
if [ -a "/usr/share/yunohost/helpers" ]; then
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
else
|
else
|
||||||
source ./_helpers.sh
|
source ./_helpers.sh
|
||||||
|
|
|
@ -7,7 +7,7 @@ source ./_common.sh
|
||||||
|
|
||||||
# Source YunoHost helpers if exists.
|
# Source YunoHost helpers if exists.
|
||||||
# If not, source backported helpers from file.
|
# If not, source backported helpers from file.
|
||||||
if [ -d "/usr/share/yunohost/helpers" ]; then
|
if [ -a "/usr/share/yunohost/helpers" ]; then
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
else
|
else
|
||||||
source ./_helpers.sh
|
source ./_helpers.sh
|
||||||
|
|
|
@ -12,7 +12,7 @@ source ./_common.sh
|
||||||
|
|
||||||
# Source YunoHost helpers if exists.
|
# Source YunoHost helpers if exists.
|
||||||
# If not, source backported helpers from file.
|
# If not, source backported helpers from file.
|
||||||
if [ -d "/usr/share/yunohost/helpers" ]; then
|
if [ -a "/usr/share/yunohost/helpers" ]; then
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
else
|
else
|
||||||
source ./_helpers.sh
|
source ./_helpers.sh
|
||||||
|
|
|
@ -10,7 +10,7 @@ source ./_common.sh
|
||||||
|
|
||||||
# Source YunoHost helpers if exists.
|
# Source YunoHost helpers if exists.
|
||||||
# If not, source backported helpers from file.
|
# If not, source backported helpers from file.
|
||||||
if [ -d "/usr/share/yunohost/helpers" ]; then
|
if [ -a "/usr/share/yunohost/helpers" ]; then
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
else
|
else
|
||||||
source ./_helpers.sh
|
source ./_helpers.sh
|
||||||
|
|
Loading…
Reference in a new issue