Skip to content

Commit

Permalink
Remove redundant sudo.
Browse files Browse the repository at this point in the history
  • Loading branch information
danluu committed Oct 26, 2017
1 parent ca4cf6d commit 053b591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Expand Up @@ -193,7 +193,7 @@ def setup_and_run_test(config, results_writer, do_corruption, do_overlay):
overlay_upperdir = tempfile.mkdtemp()
overlay_workdir = tempfile.mkdtemp()
overlay_mount = tempfile.mkdtemp() + '/'
overlay_command = 'sudo mount -t overlay -o lowerdir={},upperdir={},workdir={} overlay {}'.format(
overlay_command = 'mount -t overlay -o lowerdir={},upperdir={},workdir={} overlay {}'.format(
mountpoint,
overlay_upperdir,
overlay_workdir,
Expand Down

0 comments on commit 053b591

Please sign in to comment.