aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-06-02 12:22:20 -0300
committerEuAndreh <eu@euandre.org>2019-06-02 12:22:20 -0300
commit9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8 (patch)
tree63e797bdbb05265cb922a1a3824732aa07dfc9e1
parentUpdate generated utils.nix (diff)
downloadeuandre.org-9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8.tar.gz
euandre.org-9b8d20bbf3cac701ae475b5b2c37f12e9d7093e8.tar.xz
Don't overwrite current content in publishScript
Diffstat (limited to '')
-rw-r--r--default.nix5
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;
+ };
}