From a2e3228d67934ec120b1ae3ed181f1cfcfe8ee8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dusariez=20Jean-Fran=C3=A7ois?= Date: Fri, 19 Apr 2024 08:57:46 +0200 Subject: [PATCH] Update Dockerfile change path for superfamiconv and superfamicheck --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4113bdd..7a91b14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,14 +20,14 @@ RUN wget https://github.com/cc65/cc65/archive/refs/heads/master.zip -O cc65-mast WORKDIR /usr/src -RUN wget https://github.com/AntiheroSoftware/SuperFamiconv/archive/refs/heads/master.zip \ +RUN wget https://github.com/AntiheroSoftware/SuperFamiconv/archive/refs/heads/main.zip \ && unzip master.zip \ - && cd SuperFamiconv-master \ + && cd SuperFamiconv-main \ && make \ && cp /usr/src/SuperFamiconv-master/bin/superfamiconv /usr/bin/superfamiconv \ && cd .. && rm -rf master.zip -RUN wget https://github.com/Optiroc/SuperFamicheck/archive/refs/heads/master.zip \ +RUN wget https://github.com/Optiroc/SuperFamicheck/archive/refs/heads/main.zip \ && unzip master.zip \ && cd SuperFamicheck-main \ && make \