Commit 16598935 authored by nimrod's avatar nimrod
Browse files

Avoid duplicate output.

The output from the btrfs command is better, don't duplicate the output.
parent 36a33c32
Loading
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -14,6 +14,5 @@ do
        echo "Scrub already running on $mp, skipping." >&2
        continue
    fi
    btrfs scrub start "$mp"
    echo "Started scrub on $mp." >&2
    btrfs scrub start "$mp" >&2
done