diff options
-rwxr-xr-x | pkgkit | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -256,13 +256,13 @@ update_index() ( tmp_repo="/tmp/$aver/" path="$remote_path/$aver/$arch" - set -x # since my remote server is not alpine I have to download the repo localy rsync --blocking-io -rP \ "$remote:$path/" \ "$tmp_repo" - find "tmp_repo" -type f -name '*.apk' -print0 | + set -x + find "$tmp_repo" -type f -name '*.apk' -print0 | xargs -0 apk index \ --rewrite-arch "$(uname -m)" \ -x "$tmp_repo"/APKINDEX.tar.gz \ |