1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 13:50:46 +00:00

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.
This commit is contained in:
Jelle Raaijmakers 2023-01-04 00:26:10 +01:00 committed by Tim Flynn
parent c1d4fc2d0b
commit c2b3a7a524

View File

@ -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
}