diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2023-01-24 12:08:23 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2023-01-24 12:07:31 +0000 |
commit | 04e4624ab54a2c26e03e9df960e1640ceb150ddc (patch) | |
tree | ea2832ca6958bcbacbfe627f9c90e526662919b1 /setup-alpine.in | |
parent | d0cb8a74038ae77a35fb52752d8977bae87a6614 (diff) | |
download | alpine-conf-04e4624ab54a2c26e03e9df960e1640ceb150ddc.zip |
setup-*: use fake apk instead of $MOCK apk
Diffstat (limited to 'setup-alpine.in')
-rw-r--r-- | setup-alpine.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup-alpine.in b/setup-alpine.in index 2da6312..856b0de 100644 --- a/setup-alpine.in +++ b/setup-alpine.in @@ -268,7 +268,7 @@ diskmode=$(cat /tmp/alpine-install-diskmode.out 2>/dev/null) if [ "$diskmode" != "sys" ]; then setup-lbu ${LBUOPTS} setup-apkcache ${APKCACHEOPTS} - if [ -L /etc/apk/cache ]; then - $MOCK apk cache sync + if [ -L "$ROOT"/etc/apk/cache ]; then + apk cache sync fi fi |