forked from platypush/platypush
Replaced occurrence of let
with arithmetic expansion.
drone-ci uses /bin/sh instead of bash, so let is not available.
This commit is contained in:
parent
92d7ce8305
commit
76d4dcfcf8
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ steps:
|
|||
- echo "-- Cleaning up older apt releases"
|
||||
- |
|
||||
find "$BUCKET_MNT/apt/dists" -mindepth 3 -maxdepth 3 -type d | tail -n+2 | while read reldir; do
|
||||
let pkg_to_remove=$(ls "$reldir" | wc -l)-$MAX_PKG_PER_BRANCH
|
||||
pkg_to_remove=$(( $(ls "$reldir" | wc -l) - $MAX_PKG_PER_BRANCH ))
|
||||
[ $pkg_to_remove -le 0 ] && break
|
||||
ls -rt "$reldir" | head -n$pkg_to_remove | xargs printf -- "$reldir/%s\n" | xargs rm -f
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue