Skip to content

Commit

Permalink
fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinebou12 committed Mar 2, 2024
1 parent 9f1a521 commit 71b41f9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,15 @@ COPY InternetArchive.py /tmp/InternetArchive.py
RUN chmod +x /tmp/InternetArchive.py
RUN python3 /tmp/InternetArchive.py

COPY sort_mkdir.sh /tmp/sort_mkdir.sh

# Sort
RUN bash sort_mkdir.sh ${ROOT_WWW_PATH}/downloads/Nintendo\ -\ GameBoy\ Advance/
RUN bash sort_mkdir.sh ${ROOT_WWW_PATH}/downloads/Nintendo\ -\ Game\ Boy\ Color/
RUN bash sort_mkdir.sh ${ROOT_WWW_PATH}/downloads/Nintendo\ -\ Nintendo\ 64/
RUN bash sort_mkdir.sh ${ROOT_WWW_PATH}/downloads/Nintendo\ -\ Nintendo\ Entertainment\ System/
RUN bash sort_mkdir.sh ${ROOT_WWW_PATH}/downloads/Nintendo\ -\ Super\ Nintendo\ Entertainment\ System/
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - GameBoy"
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - GameBoy Advance"
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - GameBoy Color"
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - Nintendo 64"
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - Nintendo Entertainment System"
RUN bash /tmp/sort_mkdir.sh "${ROOT_WWW_PATH}/downloads/Nintendo - Super Nintendo Entertainment System"


# Set up the environment for the RetroArch Web Player
Expand Down

0 comments on commit 71b41f9

Please sign in to comment.