From 06ecd0b92bdabe24a9e5f770d7f6d6b61be53f96 Mon Sep 17 00:00:00 2001 From: Jon Johnson Date: Thu, 22 Aug 2024 11:28:41 -0700 Subject: [PATCH] Fix typo in README The substitution is `targets.contextdir` not `package.contextdir`. Signed-off-by: Jon Johnson --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b88e4104..86dc630ff 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ Melange provides the following default substitutions which can be referenced in | `${{package.full-version}}` | `${{package.version}}-r${{package.epoch}}` | | `${{package.description}}` | Package description | | `${{targets.outdir}}` | Directory where targets will be stored | -| `${{package.contextdir}}` | Directory where targets will be stored for main packages and subpackages | +| `${{targets.contextdir}}` | Directory where targets will be stored for main packages and subpackages | | `${{targets.destdir}}` | Directory where targets will be stored for main | | `${{targets.subpkgdir}}` | Directory where targets will be stored for subpackages | | `${{build.arch}}` | Architecture of current build (e.g. x86_64, aarch64) |