diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 22:24:43 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 22:24:43 +0200 |
commit | 326ff70b572b18d5edfb6cdd30bb2da725290c7a (patch) | |
tree | 41dc1c48c6184f04901a3d976d907d2bc3e6462f /pkgkit | |
parent | e4390dd34e24ee97145bc3e9f717430db9745da3 (diff) | |
download | apkbuilds-326ff70b572b18d5edfb6cdd30bb2da725290c7a.tar.gz apkbuilds-326ff70b572b18d5edfb6cdd30bb2da725290c7a.tar.bz2 apkbuilds-326ff70b572b18d5edfb6cdd30bb2da725290c7a.zip |
fix: fix env var not being an env var
Diffstat (limited to 'pkgkit')
-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 \ |