mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2025-10-27 08:14:26 -04: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
|