Adds -f when rm'ing pyc files

Without this I get prompted if I really want to remote the file.

BUG=none
TEST=none

Review URL: https://codereview.chromium.org/1332303003

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@296651 0039d316-1c4b-4281-b951-d872f2087c98
changes/01/332501/1
sky@chromium.org 10 years ago
parent 74374f985f
commit 02ad753f56

@ -152,7 +152,7 @@ then
fi fi
fi fi
find "$base_dir" -iname "*.pyc" -exec rm {} \; find "$base_dir" -iname "*.pyc" -exec rm -f {} \;
# Initialize/update virtualenv. # Initialize/update virtualenv.
cd $base_dir cd $base_dir

Loading…
Cancel
Save