diff options
author | EuAndreh <eu@euandre.org> | 2019-06-02 12:22:20 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-02 12:22:20 -0300 |
commit | 9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8 (patch) | |
tree | 63e797bdbb05265cb922a1a3824732aa07dfc9e1 | |
parent | Update generated utils.nix (diff) | |
download | euandre.org-9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8.tar.gz euandre.org-9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8.tar.xz |
Don't overwrite current content in publishScript
Diffstat (limited to '')
-rw-r--r-- | default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 930e70e..6313fba 100644 --- a/default.nix +++ b/default.nix @@ -97,5 +97,8 @@ in rec { (pkgs.hunspellWithDicts (with pkgs.hunspellDicts; [ en-us ])) ]; }; - publishScript = utils.publishScript subtasks.docs; + publishScript = utils.overwritingPublishScript { + docsDerivation = subtasks.docs; + overwrite = false; + }; } |