mirror of
https://github.com/EnumeratedDev/stormfetch.git
synced 2026-09-15 23:46:12 +00:00
Stormfetch will no longer crash if there is an error while reading partition size
This commit is contained in:
@@ -345,7 +345,6 @@ func getMountedPartitions() []partition {
|
|||||||
}
|
}
|
||||||
labels[link] = entry.Name()
|
labels[link] = entry.Name()
|
||||||
}
|
}
|
||||||
|
|
||||||
var partitions []partition
|
var partitions []partition
|
||||||
for _, entry := range mounts {
|
for _, entry := range mounts {
|
||||||
p := partition{
|
p := partition{
|
||||||
@@ -362,7 +361,7 @@ func getMountedPartitions() []partition {
|
|||||||
buf := new(syscall.Statfs_t)
|
buf := new(syscall.Statfs_t)
|
||||||
err = syscall.Statfs(p.MountPoint, buf)
|
err = syscall.Statfs(p.MountPoint, buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
continue
|
||||||
}
|
}
|
||||||
totalBlocks := buf.Blocks
|
totalBlocks := buf.Blocks
|
||||||
freeBlocks := buf.Bfree
|
freeBlocks := buf.Bfree
|
||||||
|
|||||||
Reference in New Issue
Block a user