mirror of
				https://github.com/AbdBarho/stable-diffusion-webui-docker.git
				synced 2025-11-03 18:53:14 -05:00 
			
		
		
		
	Rename the UIs in docker compose to their new names Changes folder names Changes output folder structure Closes issue #263 Adds `sygil-sl` instead of docker compose flag.
		
			
				
	
	
		
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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
 |