From 1874c92f56d843fe67c904ce09a81c992835f9f8 Mon Sep 17 00:00:00 2001 From: MisterSheeple <27652712+MisterSheeple@users.noreply.github.com> Date: Mon, 5 Aug 2024 05:34:54 +0000 Subject: [PATCH] Rearrange docker command --- docker-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-setup.sh b/docker-setup.sh index 4ed73dc4..8acf7a8b 100644 --- a/docker-setup.sh +++ b/docker-setup.sh @@ -1,6 +1,5 @@ echo "Please ensure Docker is installed before continuing." read -p "Press Enter to continue or CTRL-C to exit." -docker build -t ac-decomp . if [ -e /bin/curl ]; then curl -O https://files.decomp.dev/compilers_latest.zip elif [ -e /bin/wget ]; then @@ -21,4 +20,5 @@ else fi mv compilers_temp/GC/1.2.5n/ tools/ && mv compilers_temp/GC/1.3.2/ tools/ && mv compilers_temp/GC/1.3.2r/ tools/ rm -r compilers_temp compilers_latest.zip +docker build -t ac-decomp . echo "Docker image setup is now complete. You may proceed with the instructions."