diff --git a/templates/discloud.config.ejs b/templates/discloud.config.ejs index 356de19..7621d7d 100644 --- a/templates/discloud.config.ejs +++ b/templates/discloud.config.ejs @@ -1,2 +1,2 @@ -# https://docs.discloudbot.com/discloud.config +# https://docs.discloud.com/en/configurations/discloud.config <% for (const prop in props) { if (props[prop] !== null && props[prop] !== undefined) { %><%= prop %>=<%= props[prop] %><%- "\n" %><% }} %> \ No newline at end of file diff --git a/test/templates/discloudconfig.test.mjs b/test/templates/discloudconfig.test.mjs index 285b2a2..2264000 100644 --- a/test/templates/discloudconfig.test.mjs +++ b/test/templates/discloudconfig.test.mjs @@ -14,7 +14,7 @@ suite("template DiscloudConfig test", async () => { String: "String", }; - const expected = "# https://docs.discloudbot.com/discloud.config\nNumber=0\nEmptyString=\nString=String\n"; + const expected = "# https://docs.discloud.com/en/configurations/discloud.config\nNumber=0\nEmptyString=\nString=String\n"; const rendered = await renderFile(templateFilePath, { props }, { async: true });