diff options
Diffstat (limited to 'convert-python3.2')
-rwxr-xr-x | convert-python3.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/convert-python3.2 b/convert-python3.2 index 7e86f35..cbd5559 100755 --- a/convert-python3.2 +++ b/convert-python3.2 @@ -4,12 +4,12 @@ # create a new python3/bs4 source tree that works under Python 3. # # See README.txt to see how to run the test suite after conversion. -echo "About to destroy the python3.2/bs4 directory." -echo "Don't let this script run any further if your own stuff is in there." +echo "About to destroy and rebuild the python3.2/bs4 directory." +echo "If you've got stuff in there, Ctrl-C out of this script or answer 'n'." rm -rfI python3.2/bs4 cp -r bs4 python3.2 2to3-3.2 -w python3.2 echo "" echo "OK, conversion is done." echo "Now running the unit tests." -(cd python3.2/bs4 && python3.2 -m unittest discover)
\ No newline at end of file +(cd python3.2 && python3.2 -m unittest discover -s bs4)
\ No newline at end of file |