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.
1 parent af86a44 commit ee63109Copy full SHA for ee63109
msctl
@@ -541,8 +541,11 @@ updateVersionsJSON() {
541
cp -p "$VERSIONS_JSON" "$VERSIONS_JSON.bak"
542
# Delete the version_manifest.json file if it is old.
543
find "$VERSIONS_JSON" -mmin +"$VERSIONS_DURATION" -delete
544
- if [ ! -s $VERSIONS_JSON ]; then
545
- printf "The version manifest was out of date, it has been removed.\n"
+ if [ -s $VERSIONS_JSON ]; then
+ printf "The cached copy of the version manifest is up to date.\n"
546
+ printf "Use the force-update option to ensure a new copy is downloaded.\n"
547
+ else
548
+ printf "The version manifest cache was out of date, it has been removed.\n"
549
fi
550
551
# Download the version_manifest.json file if it does not exist.
0 commit comments