Fix release script
This commit is contained in:
		
							parent
							
								
									bb6e6923f2
								
							
						
					
					
						commit
						5112a33fb1
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -67,10 +67,10 @@ sub downloadFile {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    my $sha256_expected = $buildInfo->{buildproducts}->{$productNr}->{sha256hash} or die;
 | 
					    my $sha256_expected = $buildInfo->{buildproducts}->{$productNr}->{sha256hash} or die;
 | 
				
			||||||
    my $sha256_actual = `nix hash-file --type sha256 '$dstFile'`;
 | 
					    my $sha256_actual = `nix hash-file --base16 --type sha256 '$dstFile'`;
 | 
				
			||||||
    chomp $sha256_actual;
 | 
					    chomp $sha256_actual;
 | 
				
			||||||
    if ($sha256_expected ne $sha256_actual) {
 | 
					    if ($sha256_expected ne $sha256_actual) {
 | 
				
			||||||
        print STDERR "file $dstFile is corrupt\n";
 | 
					        print STDERR "file $dstFile is corrupt, got $sha256_actual, expected $sha256_expected\n";
 | 
				
			||||||
        exit 1;
 | 
					        exit 1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue