Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiny fixes #11

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ You can now run "bbouncer" with no arguments for usage info. Or, you can run
the results. Also take a look in the scripts directory for scripts you can use
to test tools that can't be run in the normal test suite for whatever reason.

Note that many of the tests and all of the copiers require root priveleges.
Note that many of the tests and all of the copiers require root privileges.
They run using sudo, so you'll be prompted for your password. This also means
you need to run the suite as a member of the admin group.

Expand Down
4 changes: 2 additions & 2 deletions bbouncer
Original file line number Diff line number Diff line change
Expand Up @@ -304,11 +304,11 @@ done

case $verb in
create|create-vol|clean)
$verb $1
$verb "$1"
;;
verify|copy|compare)
[ "$#" -lt "2" ] && usage
$verb $1 $2
$verb "$1" "$2"
;;
*)
usage
Expand Down