From f0b6425d738288f85381488cc3e25c30a441235c Mon Sep 17 00:00:00 2001 From: networkException Date: Sat, 21 Sep 2024 23:53:21 +0200 Subject: [PATCH] doc/build-helpers: fix wrong invokations of writeTextFile with destination This patch fixes occurances of writeTextFile invokations with a destination set but without a leading slash. This would cause an opaque build time error. --- doc/build-helpers/trivial-build-helpers.chapter.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/build-helpers/trivial-build-helpers.chapter.md b/doc/build-helpers/trivial-build-helpers.chapter.md index 31b42bd77426..ff00548e049a 100644 --- a/doc/build-helpers/trivial-build-helpers.chapter.md +++ b/doc/build-helpers/trivial-build-helpers.chapter.md @@ -501,7 +501,7 @@ writeTextFile { text = '' Contents of File ''; - destination = "share/my-file"; + destination = "/share/my-file"; } ``` @@ -586,7 +586,7 @@ writeTextFile { echo "hi" ''; executable = true; - destination = "bin/my-script"; + destination = "/bin/my-script"; } ``` @@ -674,7 +674,7 @@ writeTextFile { echo "hi" ''; executable = true; - destination = "bin/my-script"; + destination = "/bin/my-script"; } ```