From 3d0c8ae2ecaf346a67aa00bfeac22fff03122aa3 Mon Sep 17 00:00:00 2001 From: Petr Písař Date: Feb 07 2022 15:27:14 +0000 Subject: Escape a currly bracket Curly brakets are "refernce document attributes" for asciidoc. Those are placeholders being replaced by an actual value. Current asciidoctor warned on it: (asciidoctor): skipping reference to missing attribute: repo_path --- diff --git a/modules/ROOT/pages/building-modules/local/building-modules-locally.adoc b/modules/ROOT/pages/building-modules/local/building-modules-locally.adoc index 64b6049..b87027e 100644 --- a/modules/ROOT/pages/building-modules/local/building-modules-locally.adoc +++ b/modules/ROOT/pages/building-modules/local/building-modules-locally.adoc @@ -80,7 +80,7 @@ class BaseConfiguration(object): . ---- -The `{repo_path}` will be replaced during runtime with url you provided in your modulemd yaml file when defining packages, but only for the first element of the tuple. The second element is set to `None` as it won't be downloading package sources through MBS but through rpmbuild. Although this needs to be enabled in your spec files. If you don't want to modify your spec files, then you have to define a bash command which will download your package sources. +The `\{repo_path}` will be replaced during runtime with url you provided in your modulemd yaml file when defining packages, but only for the first element of the tuple. The second element is set to `None` as it won't be downloading package sources through MBS but through rpmbuild. Although this needs to be enabled in your spec files. If you don't want to modify your spec files, then you have to define a bash command which will download your package sources. === Spec file configuration (Optional) @@ -138,4 +138,4 @@ Now, when you list the available modules on your system, you should be able to s ---- $ dnf module list $ dnf module install testmodule:master ----- \ No newline at end of file +----