diff options
-rw-r--r-- | scripts/pythondeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pythondeps b/scripts/pythondeps index 2b38a5289..6c391d7c6 100644 --- a/scripts/pythondeps +++ b/scripts/pythondeps @@ -20,7 +20,7 @@ fi (/usr/sbin/chroot $DIR /usr/bin/anaconda -m dir://mnt/source --test --text --traceonly; \ cd $DIR; find usr/lib/python* usr/lib/anaconda -type f | sed 's,^,/,' ) | \ sort | uniq -u | sed s,^,./, | while read fn; do - [ ! -d $DIR/$fn ] && rm $DIR/$fn + [ ! -d "$DIR/$fn" ] && rm "$DIR/$fn" done umount $DIR/proc rmdir $DIR/proc |