diff options
author | EuAndreh <eu@euandre.org> | 2019-05-31 19:36:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-31 19:36:57 -0300 |
commit | 1d34067b36f3c5d3e873a3578ba715f13ea74bad (patch) | |
tree | 46ae89b8385df570b0052dc3ce3c4b2936fafcd2 | |
parent | Remove symlink to nixos/utils.nix (diff) | |
download | dotfiles-1d34067b36f3c5d3e873a3578ba715f13ea74bad.tar.gz dotfiles-1d34067b36f3c5d3e873a3578ba715f13ea74bad.tar.xz |
Fix missing newline scaping in publishScript
-rw-r--r-- | utils.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ in rec { pkgs.writeShellScriptBin "publish.sh" '' set -euo pipefail OUT_DOCS="${docsDerivation}" - ${pkgs.rsync}/bin/rsync -avzP + ${pkgs.rsync}/bin/rsync -avzP \ --rsh="ssh -o StrictHostKeyChecking=no" \ "$OUT_DOCS" \ "$SERVER_URL:$DOCS_SERVER_PATH" |