mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Fix when LANG is undefine
This commit is contained in:
parent
a7cb395646
commit
4cbff3b86c
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ echo 'LOGIN_ATTR = mail' | tee -a $final_path/conf/ccnet.conf
|
|||
echo 'ENABLE_WIKI = True' | tee -a $final_path/conf/seahub_settings.py
|
||||
|
||||
# Fix local warning
|
||||
ynh_replace_string en_US.UTF-8 $LANG $final_path/seafile-server-$seafile_version/seahub.sh
|
||||
ynh_replace_string en_US.UTF-8 ${LANG:-'en_US.UTF-8'} $final_path/seafile-server-$seafile_version/seahub.sh
|
||||
|
||||
# Add webdav
|
||||
cp ../conf/seafdav.conf $final_path/conf/seafdav.conf
|
||||
|
|
Loading…
Reference in a new issue