Don't explicitly state filesystem type when mounting
This commit is contained in:
parent
f37ea5c8a7
commit
325335544a
1 changed files with 1 additions and 1 deletions
|
@ -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}`)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue