Fix file type detection on windows
This commit is contained in:
parent
d8d72ecd70
commit
73703f3330
|
@ -73,7 +73,7 @@ def main() -> int:
|
||||||
|
|
||||||
rootfs = op.abspath(args.RootFS)
|
rootfs = op.abspath(args.RootFS)
|
||||||
try:
|
try:
|
||||||
if magic.Magic(mime=True).from_file(rootfs) != "application/octet-stream":
|
if magic.Magic(mime=True).from_file(rootfs) not in ["application/octet-stream", "inode/blockdevice"]:
|
||||||
console.log("Invalid RootFS image")
|
console.log("Invalid RootFS image")
|
||||||
return 1
|
return 1
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
|
|
Reference in a new issue