mirror of
				https://github.com/AbdBarho/stable-diffusion-webui-docker.git
				synced 2025-10-31 10:13:28 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			261 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			261 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -Eeuo pipefail
 | |
| 
 | |
| echo "Downloading, this might take a while..."
 | |
| 
 | |
| aria2c --input-file /docker/links.txt --dir /cache/models --continue
 | |
| 
 | |
| echo "Checking SHAs..."
 | |
| 
 | |
| parallel --will-cite -a /docker/checksums.sha256 "echo -n {} | sha256sum -c"
 |