Commit 02ad753f authored by sky@chromium.org's avatar sky@chromium.org

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
parent 74374f98
...@@ -152,7 +152,7 @@ then ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment