From c2b3a7a524d8be017fa02cec5c0221fcf21f1146 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Wed, 4 Jan 2023 00:26:10 +0100 Subject: [PATCH] Ports: Unbreak ScummVM icon pack generation The ScummVM icon repository no longer accepts "1970-01-01" as a valid start date for the icon pack generation. We now use the oldest commit date in the repository which _is_ accepted. --- Ports/scummvm/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/scummvm/package.sh b/Ports/scummvm/package.sh index 83fd96154b..36bde86fd9 100755 --- a/Ports/scummvm/package.sh +++ b/Ports/scummvm/package.sh @@ -32,7 +32,7 @@ function post_install() { git clone https://github.com/scummvm/scummvm-icons "$(basename ${icons_build_dir})" cd "$(basename ${icons_build_dir})" - ./gen-set.py 19700101 + ./gen-set.py 20210825 cp gui-icons-*.dat "${SERENITY_INSTALL_ROOT}/usr/local/share/scummvm/gui-icons.dat" fi }