mirror of
				https://github.com/AbdBarho/stable-diffusion-webui-docker.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								set -Eeuo pipefail
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								echo "Moving everything in output to output/old..."
							 | 
						||
| 
								 | 
							
								mv output old
							 | 
						||
| 
								 | 
							
								mkdir output
							 | 
						||
| 
								 | 
							
								mv old/.gitignore output
							 | 
						||
| 
								 | 
							
								mv old output
							 |