Installer for WSL (#78)

This commit is contained in:
jllllll 2023-06-12 22:04:15 -05:00 committed by GitHub
parent 53496ffa80
commit c42f183d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 200 additions and 3 deletions

View file

@ -1,5 +1,6 @@
mkdir oobabooga_{windows,linux,macos}
for p in windows macos linux; do
cp {*$p*\.*,webui.py,INSTRUCTIONS.TXT} oobabooga_$p;
mkdir oobabooga_{windows,linux,macos,wsl}
for p in windows macos linux wsl; do
if [ "$p" == "wsl" ]; then cp {*$p*\.*,webui.py,INSTRUCTIONS-WSL.TXT} oobabooga_$p;
else cp {*$p*\.*,webui.py,INSTRUCTIONS.TXT} oobabooga_$p; fi
zip -r oobabooga_$p.zip oobabooga_$p;
done