mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix cleanup
This commit is contained in:
parent
000a9e3015
commit
98f245e5f9
1 changed files with 5 additions and 1 deletions
|
@ -36,7 +36,11 @@ phpize_clean()
|
|||
{
|
||||
echo "Cleaning.."
|
||||
for i in $CLEAN_FILES; do
|
||||
test -f $i && rm -rf $i
|
||||
if test -f "$i"; then
|
||||
rm -f $i
|
||||
elif test -d "$i"; then
|
||||
rm -rf $i
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue