Commit b3932af5 authored by Dylan Araps's avatar Dylan Araps

Disk: Fix flags on Minix 2

parent 2942abd4
...@@ -1556,8 +1556,8 @@ get_disk() { ...@@ -1556,8 +1556,8 @@ get_disk() {
# Get 'df' flags. # Get 'df' flags.
case "$os" in case "$os" in
"Haiku") err "Disk doesn't work on Haiku due to the non-standard 'df'"; return ;; "Haiku") err "Disk doesn't work on Haiku due to the non-standard 'df'"; return ;;
"Minix") df_flags=(-P -h) ;; "Minix") df_flags=(-h) ;;
*) df_flags=(-h) ;; *) df_flags=(-P -h) ;;
esac esac
# Get the info for / # Get the info for /
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment