summary refs log tree commit diff
path: root/pkgs/applications/networking/bittorrentsync
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-30 14:56:10 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-30 14:56:10 +0200
commit40f7b0f9df5a35d56d4f44fc02067f49d104a191 (patch)
tree618348fbe292e1308c9f3c703f3b02c16ebe0b1c /pkgs/applications/networking/bittorrentsync
parent47075812ce0ca06e647ca8d2ab439dce060055a2 (diff)
downloadnixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar.gz
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar.bz2
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar.lz
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar.xz
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.tar.zst
nixpkgs-40f7b0f9df5a35d56d4f44fc02067f49d104a191.zip
Another attempt to eradicate ensureDir
See c556a6ea46e71e1907d78b71fab36df30297b3ad.
Diffstat (limited to 'pkgs/applications/networking/bittorrentsync')
-rw-r--r--pkgs/applications/networking/bittorrentsync/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/bittorrentsync/default.nix b/pkgs/applications/networking/bittorrentsync/default.nix
index abb94a32bd7..989ceb235b0 100644
--- a/pkgs/applications/networking/bittorrentsync/default.nix
+++ b/pkgs/applications/networking/bittorrentsync/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ patchelf ];
 
   installPhase = ''
-    ensureDir "$out/bin/"
+    mkdir -p "$out/bin/"
     cp -r "btsync" "$out/bin/"
 
     patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \