summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.c b/src/context.c
index 3a806db..400e09b 100644
--- a/src/context.c
+++ b/src/context.c
@@ -50,7 +50,7 @@ int apk_ctx_prepare(struct apk_ctx *ac)
ac->flags |= APK_NO_CHROOT;
// Check uvol availability
- ac->uvol = getenv("APK_UVOL") ?: "/usr/bin/uvol";
+ ac->uvol = getenv("APK_UVOL") ?: "/usr/sbin/uvol";
if (access(ac->uvol, X_OK) != 0)
ac->uvol = ERR_PTR(-APKE_UVOL_NOT_AVAILABLE);
} else {