mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Gotta explicitly return 0, otherwise the return code of last command is used, which in that case is 1 ...
This commit is contained in:
parent
adaf539e98
commit
c56883d027
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ ynh_pin_repo () {
|
|||
fi
|
||||
|
||||
# Sury pinning is managed by the regenconf in the core...
|
||||
[[ "$name" != "extra_php_version" ]] || return
|
||||
[[ "$name" != "extra_php_version" ]] || return 0
|
||||
|
||||
mkdir --parents "/etc/apt/preferences.d"
|
||||
echo "Package: $package
|
||||
|
|
Loading…
Add table
Reference in a new issue