Skip to content

Commit

Permalink
Merge pull request #44 from orhun/chore/fix_typo_in_url
Browse files Browse the repository at this point in the history
Fix typo in the URL
  • Loading branch information
rajnandan1 authored Jan 27, 2024
2 parents a85820e + 7bea01d commit 8880dfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
}
Expand Down

0 comments on commit 8880dfa

Please sign in to comment.