diff options
author | EuAndreh <eu@euandre.org> | 2019-06-02 16:03:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-02 16:03:32 -0300 |
commit | cc1ff3967f671ffeee98b69014815d6d98747330 (patch) | |
tree | fd20f262a55286d5a78e7ec50d2e0a1fee3ca3fc /utils.nix | |
parent | mrconfig.ini (diff) | |
download | dotfiles-cc1ff3967f671ffeee98b69014815d6d98747330.tar.gz dotfiles-cc1ff3967f671ffeee98b69014815d6d98747330.tar.xz |
Fix overwrite boolean logic bug
Diffstat (limited to 'utils.nix')
-rw-r--r-- | utils.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ in rec { set -euo pipefail OUT_DOCS="${docsDerivation}" ${ - if overwrite then "# " else "" + if overwrite then "" else "# " }${pkgs.openssh}/bin/ssh -o StrictHostKeyChecking=no "$SERVER_URL" rm -rf "$DOCS_SERVER_PATH/*" ${pkgs.rsync}/bin/rsync -avzP \ --rsh="ssh -o StrictHostKeyChecking=no" \ |