From 107007d81b77cf05e20fd695b614f669fd9b5311 Mon Sep 17 00:00:00 2001 From: garywill Date: Sat, 2 Mar 2024 13:44:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli.js | 10 +++++----- index.html | 10 +++++----- sync_opencc.sh | 18 +++++++++--------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cli.js b/cli.js index 1aa5dfe..ad97063 100644 --- a/cli.js +++ b/cli.js @@ -3,13 +3,13 @@ var fs = require('fs'); eval(fs.readFileSync('common.js').toString()); eval(fs.readFileSync('init.js').toString()); -eval(fs.readFileSync("unicode-data/unicode-data-blocks.js").toString()); -eval(fs.readFileSync("unicode-data/unicode-data-ages.js").toString()); -eval(fs.readFileSync("unicode-data/unicode-data-Cc.js").toString()); -eval(fs.readFileSync("unicode-data/unicode-data-Mn.js").toString()); +eval(fs.readFileSync("data/unicode-data/unicode-data-blocks.js").toString()); +eval(fs.readFileSync("data/unicode-data/unicode-data-ages.js").toString()); +eval(fs.readFileSync("data/unicode-data/unicode-data-Cc.js").toString()); +eval(fs.readFileSync("data/unicode-data/unicode-data-Mn.js").toString()); eval(fs.readFileSync("ucd.js").toString()); -eval(fs.readFileSync("summary-data/summary-data-map2.js").toString()); +eval(fs.readFileSync("data/summary-data/summary-data-map2.js").toString()); eval(fs.readFileSync("unusual_conditions.js").toString()); eval(fs.readFileSync("checkessay.js").toString()); diff --git a/index.html b/index.html index e36d4fb..b078ab1 100644 --- a/index.html +++ b/index.html @@ -7,13 +7,13 @@ - - - - + + + + - + diff --git a/sync_opencc.sh b/sync_opencc.sh index 75118fe..5cc511e 100755 --- a/sync_opencc.sh +++ b/sync_opencc.sh @@ -23,16 +23,16 @@ TWVariants.txt for ((i=0; i<${#opencc_file_list[@]}; i++ )) do - sha1sum opencc-data/${opencc_file_list[i]} - wget https://raw.githubusercontent.com/BYVoid/OpenCC/master/data/dictionary/${opencc_file_list[i]} -O opencc-data/${opencc_file_list[i]} || exit 1 - #curl https://raw.githubusercontent.com/BYVoid/OpenCC/master/data/dictionary/${opencc_file_list[i]} > opencc-data/${opencc_file_list[i]} + sha1sum data/opencc-data/${opencc_file_list[i]} + wget https://raw.githubusercontent.com/BYVoid/OpenCC/master/data/dictionary/${opencc_file_list[i]} -O data/opencc-data/${opencc_file_list[i]} || exit 1 + #curl https://raw.githubusercontent.com/BYVoid/OpenCC/master/data/dictionary/${opencc_file_list[i]} > data/opencc-data/${opencc_file_list[i]} git config user.name bot git config user.email bot@github.bot.none - sha1sum opencc-data/${opencc_file_list[i]} - git add opencc-data/${opencc_file_list[i]} + sha1sum data/opencc-data/${opencc_file_list[i]} + git add data/opencc-data/${opencc_file_list[i]} git diff git commit -m "sync opencc ${opencc_file_list[i]}" #git log @@ -40,16 +40,16 @@ do done pushd . -cd opencc-data +cd data/opencc-data node pre.js || exit 1 -git add -u opencc-data-*.js +git add -u data/opencc-data-*.js git commit -m "run opencc pre.js" popd pushd . -cd summary-data +cd data/summary-data node pre.js || exit 1 -git add -u summary-data-*.js +git add -u data/summary-data-*.js git commit -m "run summary pre.js" popd