aboutsummaryrefslogtreecommitdiff
path: root/pkgkit
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-10-14 22:24:43 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-10-14 22:24:43 +0200
commit326ff70b572b18d5edfb6cdd30bb2da725290c7a (patch)
tree41dc1c48c6184f04901a3d976d907d2bc3e6462f /pkgkit
parente4390dd34e24ee97145bc3e9f717430db9745da3 (diff)
downloadapkbuilds-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-xpkgkit4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgkit b/pkgkit
index 735d177..60d1474 100755
--- a/pkgkit
+++ b/pkgkit
@@ -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 \