mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix error in ynh_spawn_app_shell
This commit is contained in:
parent
5fa58f19ce
commit
cacd43e147
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ ynh_spawn_app_shell() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# cd into the WorkingDirectory set in the service, or default to the install_dir
|
# cd into the WorkingDirectory set in the service, or default to the install_dir
|
||||||
local env_dir = $(systemctl show $service.service -p "WorkingDirectory" --value)
|
local env_dir=$(systemctl show $service.service -p "WorkingDirectory" --value)
|
||||||
[ -z $env_dir ] && env_dir=$install_dir;
|
[ -z $env_dir ] && env_dir=$install_dir;
|
||||||
cd $env_dir
|
cd $env_dir
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue