writeTextDir
pkgs.writeTextDir
Docs pulled from | This Revision | 19 minutes ago
Noogle detected
Implementation
The following is the current implementation of this function.
writeTextDir =
path: text:
writeTextFile {
inherit text;
name = builtins.baseNameOf path;
destination = "/${path}";
};