Unverified Commit f0b6425d authored by networkException's avatar networkException
Browse files

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.
parent b1b7d7f3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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";
}
```