Skip to content

Commit e37dcdb

Browse files
committed
Fix deploy.sh
1 parent 1dad5bb commit e37dcdb

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

deploy.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -346,17 +346,17 @@ parse_with_getopts() {
346346

347347
check_chang_log() {
348348
echo " ? Modified change log?"
349-
local content=$(<${SOURCE_DIR}/Changelog.md)
349+
local content=$(<${SOURCE_DIR}/ChangeLog.md)
350350
if [[ $content =~ $VERSION ]]; then
351-
echo_success " √ Modified in \"Changelog.md\""
351+
echo_success " √ Modified in \"ChangeLog.md\""
352352
else
353-
echo_warn " ! Warning: Don't include \"$VERSION\" in the file \"Changelog.md\""
353+
echo_warn " ! Warning: Don't include \"$VERSION\" in the file \"ChangeLog.md\""
354354
fi
355-
content=$(<${SOURCE_DIR}/Changelog_zh_CN.md)
355+
content=$(<${SOURCE_DIR}/ChangeLog_zh_CN.md)
356356
if [[ $content =~ $VERSION ]]; then
357-
echo_success " √ Modified change log in \"Changelog_zh_CN.md\""
357+
echo_success " √ Modified change log in \"ChangeLog_zh_CN.md\""
358358
else
359-
echo_warn " ! Warning: Don't include \"$VERSION\" in the file \"Changelog_zh_CN.md\""
359+
echo_warn " ! Warning: Don't include \"$VERSION\" in the file \"ChangeLog_zh_CN.md\""
360360
fi
361361
}
362362

0 commit comments

Comments
 (0)