From 325335544ade3fcb5762b211fbf9eadea78f7282 Mon Sep 17 00:00:00 2001 From: flawedworld Date: Tue, 3 May 2022 17:11:39 +0100 Subject: [PATCH] Don't explicitly state filesystem type when mounting --- src/util/fs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/fs.ts b/src/util/fs.ts index dc2a551..fbd221e 100644 --- a/src/util/fs.ts +++ b/src/util/fs.ts @@ -74,5 +74,5 @@ export async function readFile(path: string) { } export async function mount(imgPath: string, mountpoint: string) { - await run(`mount -t ext4 -o ro ${imgPath} ${mountpoint}`) + await run(`mount -o ro ${imgPath} ${mountpoint}`) }