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
This commit is contained in:
sky@chromium.org
2015-09-11 17:04:32 +00:00
parent 74374f985f
commit 02ad753f56

View File

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