From 6fe468115a126383bb655731e82790c08d6d6aa8 Mon Sep 17 00:00:00 2001 From: Danilo Tuler Date: Tue, 22 Oct 2024 11:39:53 -0400 Subject: [PATCH] fix(cli): fix mkquashfs arg --- apps/cli/src/exec/mksquashfs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/src/exec/mksquashfs.ts b/apps/cli/src/exec/mksquashfs.ts index 79e60235..674a3a6b 100644 --- a/apps/cli/src/exec/mksquashfs.ts +++ b/apps/cli/src/exec/mksquashfs.ts @@ -6,7 +6,7 @@ const COMPRESSION = "lzo"; // make customizable? default is gzip export const requiredVersion: Range = new Range("^4.5.1"); const baseArgs = () => [ - "--all-time", + "-all-time", "0", "-all-root", // XXX: should we use this? "-noappend",