From 7bea01dbb6a1aa66c315543aae881d0ea4901df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 27 Jan 2024 16:22:10 +0300 Subject: [PATCH] Fix typo in the URL --- scripts/check.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/check.js b/scripts/check.js index 1c03ed489..834ea3a0e 100644 --- a/scripts/check.js +++ b/scripts/check.js @@ -40,22 +40,22 @@ if(process.env.GH_TOKEN === undefined) { } if(process.env.API_TOKEN === undefined) { - console.log(`❗ API_TOKEN is not set. Go to https://kener.ing/docs#h2environment-vairable to learn how to set it up`); + console.log(`❗ API_TOKEN is not set. Go to https://kener.ing/docs#h2environment-variable to learn how to set it up`); } else { console.log(`✅ API_TOKEN is set`); } if (process.env.API_IP === undefined) { - console.log(`❗ API_IP is not set. Go to https://kener.ing/docs#h2environment-vairable to learn how to set it up`); + console.log(`❗ API_IP is not set. Go to https://kener.ing/docs#h2environment-variable to learn how to set it up`); } else { console.log(`✅ API_IP is set`); } if (process.env.MONITOR_YAML_PATH === undefined) { - console.log(`❗ MONITOR_YAML_PATH is not set. Go to https://kener.ing/docs#h2environment-vairable to learn how to set it up. Defaulting to config/monitors.yaml`); + console.log(`❗ MONITOR_YAML_PATH is not set. Go to https://kener.ing/docs#h2environment-variable to learn how to set it up. Defaulting to config/monitors.yaml`); } else { console.log(`✅ MONITOR_YAML_PATH is set`); } if (process.env.SITE_YAML_PATH === undefined) { - console.log(`❗ SITE_YAML_PATH is not set. Go to https://kener.ing/docs#h2environment-vairable to learn how to set it up. Defaulting to config/site.yaml`); + console.log(`❗ SITE_YAML_PATH is not set. Go to https://kener.ing/docs#h2environment-variable to learn how to set it up. Defaulting to config/site.yaml`); } else { console.log(`✅ SITE_YAML_PATH is set`); }