Clone test repositories with earlier --shallow-since dates

The previous dates were not reliably downloading the
necessary commit IDs for checkout to work.
This commit is contained in:
Rangi
2021-04-27 17:27:23 -04:00
parent 3fdf01c0f5
commit 4ee2eb845b

View File

@@ -24,7 +24,7 @@ done
# When adding new ones, don't forget to add them to the .gitignore! # When adding new ones, don't forget to add them to the .gitignore!
if [ ! -d pokecrystal ]; then if [ ! -d pokecrystal ]; then
git clone https://github.com/pret/pokecrystal.git --shallow-since=2021-04-19 --single-branch git clone https://github.com/pret/pokecrystal.git --shallow-since=2021-04-01 --single-branch
fi fi
pushd pokecrystal pushd pokecrystal
git fetch git fetch
@@ -34,7 +34,7 @@ make -j4 compare RGBDS=../../
popd popd
if [ ! -d pokered ]; then if [ ! -d pokered ]; then
git clone --recursive https://github.com/pret/pokered.git --shallow-since=2021-04-19 --single-branch git clone --recursive https://github.com/pret/pokered.git --shallow-since=2021-04-01 --single-branch
fi fi
pushd pokered pushd pokered
git fetch git fetch
@@ -44,7 +44,7 @@ make -j4 compare RGBDS=../../
popd popd
if [ ! -d ucity ]; then if [ ! -d ucity ]; then
git clone https://github.com/AntonioND/ucity.git --shallow-since=2020-11-11 --single-branch git clone https://github.com/AntonioND/ucity.git --shallow-since=2020-11-01 --single-branch
fi fi
pushd ucity pushd ucity
git fetch git fetch