mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix broken logrotate helper é_è
This commit is contained in:
parent
f443631292
commit
efa80304d2
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ ynh_use_logrotate() {
|
||||||
# So instead this loops over the positional args, and replace --non-append
|
# So instead this loops over the positional args, and replace --non-append
|
||||||
# with --nonappend so it's transperent for the rest of the function...
|
# with --nonappend so it's transperent for the rest of the function...
|
||||||
local all_args=( ${@} )
|
local all_args=( ${@} )
|
||||||
for I in $(seq 0 $#)
|
for I in $(seq 0 $(($# - 1)))
|
||||||
do
|
do
|
||||||
if [[ "${all_args[$I]}" == "--non-append" ]]
|
if [[ "${all_args[$I]}" == "--non-append" ]]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Add table
Reference in a new issue