diff --git a/scripts/check.mjs b/scripts/check.mjs
index d9c36df9b82e945008279a8d2ecdea84bb8c7ad8..ebe88c9286fe7a219c6b9e2b4f87558b76f9bdb4 100644
--- a/scripts/check.mjs
+++ b/scripts/check.mjs
@@ -17,7 +17,7 @@ const SIDECAR_HOST = execSync("rustc -vV")
 /* ======= clash ======= */
 const CLASH_URL_PREFIX =
   "https://github.com/Dreamacro/clash/releases/download/premium/";
-const CLASH_LATEST_DATE = "2022.11.25";
+const CLASH_LATEST_DATE = "2023.01.29";
 
 const CLASH_MAP = {
   "win32-x64": "clash-windows-amd64",
@@ -45,10 +45,10 @@ const META_MAP = {
 
 const { platform, arch } = process;
 if (!CLASH_MAP[`${platform}-${arch}`]) {
-  throw new Error(`clash unsupport platform "${platform}-${arch}"`);
+  throw new Error(`clash unsupported platform "${platform}-${arch}"`);
 }
 if (!META_MAP[`${platform}-${arch}`]) {
-  throw new Error(`clash meta unsupport platform "${platform}-${arch}"`);
+  throw new Error(`clash meta unsupported platform "${platform}-${arch}"`);
 }
 
 function clash() {