diff options
Diffstat (limited to 'tools/i386')
-rwxr-xr-x | tools/i386/netboot/makeImages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/i386/netboot/makeImages b/tools/i386/netboot/makeImages index 79d45c11e..3920547d7 100755 --- a/tools/i386/netboot/makeImages +++ b/tools/i386/netboot/makeImages @@ -7,7 +7,7 @@ DRIVERTOCOMPILE=`grep NETBOOT_DRIVERS= ${PATHGRUB}/configure.in | cut -d " " -f echo "Cleaning old drivers" for i in `ls` do - if [ -d $i ]; then + if [ -d $i ] && [ $i != CVS ]; then rm -rf $i fi |