Commit 6c265896 authored by Dylan Araps's avatar Dylan Araps

Disk: Remove -P from flags

parent 9b21e732
...@@ -1618,8 +1618,8 @@ get_disk() { ...@@ -1618,8 +1618,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=(-h) ;; "Mac OS X") df_flags=(-P -h) ;;
*) df_flags=(-P -h) ;; *) df_flags=(-h) ;;
esac esac
# Create an array called 'disks' where each element is a separate line from # Create an array called 'disks' where each element is a separate line from
......
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