From 74e6e24589fb4570b1ffc6b68e49d2e84ba872f5 Mon Sep 17 00:00:00 2001 From: MisterSheeple <27652712+MisterSheeple@users.noreply.github.com> Date: Mon, 5 Aug 2024 04:13:50 +0000 Subject: [PATCH] Create build-docker.bat --- build-docker.bat | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 build-docker.bat diff --git a/build-docker.bat b/build-docker.bat new file mode 100644 index 00000000..2df1ccf1 --- /dev/null +++ b/build-docker.bat @@ -0,0 +1,7 @@ +docker build -t ac-decomp . +curl -O https://files.decomp.dev/compilers_latest.zip +Expand-Archive -LiteralPath compilers_latest.zip -DestinationPath compilers_temp +move compilers_temp\GC\1.2.5n\ tools\ && mv compilers_temp\GC\1.3.2\ tools\ && mv compilers_temp\GC\1.3.2r\ tools\ +Remove-Item compilers_latest.zip +Remove-Item -Path compilers_temp\ -Recurse +echo "Docker image setup is now complete. You may proceed with the instructions."