We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 959cb17 + b4e8d81 commit a1c547bCopy full SHA for a1c547b
scripts/update_lang_functions.sh
@@ -94,8 +94,12 @@ function load_langpacks {
94
pushd "$LANGPACKS_PATH"
95
96
git checkout "langpack_$LANGVERSION"
97
- git pull
+ if [ $? -ne 0 ]; then
98
+ echo "Cannot checkout language repository langpack_$LANGVERSION"
99
+ exit 1
100
+ fi
101
102
+ git pull
103
if [ $? -ne 0 ]; then
104
echo "Cannot update language repository"
105
exit 1
src/core/classes/sites/authenticated-site.ts
@@ -73,6 +73,7 @@ export class CoreAuthenticatedSite extends CoreUnauthenticatedSite {
73
'4.2': 2023042400,
74
'4.3': 2023100900,
75
'4.4': 2024042200,
76
+ '4.5': 2024081600, // @TODO correct the final release date.
77
};
78
79
// Possible cache update frequencies.
0 commit comments