Rename build-docker.bat to docker-setup.bat

This commit is contained in:
MisterSheeple
2024-08-05 05:26:13 +00:00
committed by GitHub
parent 26a35d580f
commit 2ea8e32049
+15
View File
@@ -0,0 +1,15 @@
@echo off
echo "Please ensure Docker Desktop is running before continuing."
pause
docker build -t ac-decomp .
curl -O https://files.decomp.dev/compilers_latest.zip
mkdir compilers_temp
tar -xf compilers_latest.zip -C compilers_temp
xcopy compilers_temp\GC\1.2.5n\ tools\1.2.5n\ /E /I
xcopy compilers_temp\GC\1.3.2\ tools\1.3.2\ /E /I
xcopy compilers_temp\GC\1.3.2r\ tools\1.3.2r\ /E /I
del compilers_latest.zip
rmdir /S /Q compilers_temp\
echo "Docker image setup is now complete. You may proceed with the instructions."
pause
exit