Skip to content

Commit

Permalink
Never use 'rm -rf' where 'rm -r' sufficies.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbell committed Mar 19, 2011
1 parent 0ce32a5 commit d5c2fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Expand Up @@ -179,8 +179,8 @@ for dir in dist pycppad-$yyyymmdd
do
if [ -e "$dir" ]
then
echo "rm -rf $dir"
rm -rf $dir
echo "rm -r $dir"
rm -r $dir
fi
done
echo "create MANIFEST.in"
Expand Down

0 comments on commit d5c2fe2

Please sign in to comment.