diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/download.pl | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 009ed3b68..e7c7ee32e 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -43,9 +43,10 @@ sub download  		cleanup();  		return;  	} +	$? = 0;  	my $sum = `cat "$target/$filename.md5sum"`; -	$sum =~ /^(\w+)\s+/ or die "Could not generate md5sum\n"; +	$sum =~ /^(\w+)\s*/ or die "Could not generate md5sum\n";  	$sum = $1;  	if (($md5sum =~ /\w{32}/) and ($sum ne $md5sum)) {  | 
