From 0a32187466390fb5c2a33b278a5dd95534a3ce20 Mon Sep 17 00:00:00 2001 From: Sjur N Moshagen Date: Tue, 27 Feb 2024 10:01:53 +0200 Subject: [PATCH] Update external repo text to reflect new dir layout --- infra/GutUsageExamples.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/infra/GutUsageExamples.md b/infra/GutUsageExamples.md index 68ea2f2b..81e0feff 100644 --- a/infra/GutUsageExamples.md +++ b/infra/GutUsageExamples.md @@ -265,14 +265,17 @@ We use `git subtree` for adding external repos. To do that, add a new language a 1. add the external source using `git subtree` as follows: ```sh -git subtree add --prefix src/fst/ext-Apertium-nno https://github.com/apertium/apertium-nno.git master --squash +git subtree add --prefix src/fst/morphology/ext-Apertium-nno \ +https://github.com/apertium/apertium-nno.git master --squash ``` -1. Modify `src/fst/Makefile.am` as needed to make everything build + +3. Modify `src/fst/morphology/Makefile.am` as needed to make everything build When you later want to update the code from the external repository, do as follows: ```sh -git subtree pull --prefix src/fst/ext-Apertium-nno https://github.com/apertium/apertium-nno.git master --squash +git subtree pull --prefix src/fst/morphology/ext-Apertium-nno \ +https://github.com/apertium/apertium-nno.git master --squash ``` ## Task 16: Set team access permission