Skip to content

Commit 367edbf

Browse files
committed
Add wiki articles repo as a submodule
1 parent a7f1a63 commit 367edbf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
# [submodule "dyno-import"]
77
# path = dyno-import
88
# url = git@github.com:TCCPP/dyno-import.git
9+
[submodule "wiki"]
10+
path = wiki
11+
url = git@github.com:TCCPP/wiki-articles.git

src/components/help.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ export default class Help extends BotComponent {
5151
(unwrap(this.wheatley.components.get("Wiki")) as Wiki).article_aliases
5252
.map((_, alias) => `\`${alias}\``)
5353
.join(", "),
54-
"Article contributions are welcome " +
55-
"[here](https://github.com/TCCPP/wheatley/tree/main/wiki-articles)!",
54+
"Article contributions are welcome [here](https://github.com/TCCPP/wiki-articles)!",
5655
),
5756
},
5857
{

src/components/wiki.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Wheatley } from "../wheatley.js";
1313
import { TextBasedCommandBuilder } from "../command-abstractions/text-based-command-builder.js";
1414
import { TextBasedCommand } from "../command-abstractions/text-based-command.js";
1515

16-
export const wiki_dir = "wiki-articles";
16+
export const wiki_dir = "wiki";
1717

1818
type WikiArticle = {
1919
name: string | null; // basename for the article

wiki

Submodule wiki added at ddfd8cd

0 commit comments

Comments
 (0)