summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-01-27 02:03:11 -0800
committerRyan Burns <rtburns@protonmail.com>2021-01-27 02:03:14 -0800
commitb98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c (patch)
treeb3467de174dcc90d35d842390b751a68362aae5f /pkgs/development/mobile
parent15a64b2facc1b91f4361bdd101576e8886ef834b (diff)
downloadnixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar.gz
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar.bz2
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar.lz
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar.xz
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.tar.zst
nixpkgs-b98bfb6536d3e3aa5f47e028aa3311fb5be7fe0c.zip
androidenv: do not copy verbosely
Verbose copying can exceed hydra's output limit,
causing spurious failures. For example, see:
https://hydra.nixos.org/eval/1644892?filter=android
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/androidenv/deploy-androidpackage.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/mobile/androidenv/deploy-androidpackage.nix b/pkgs/development/mobile/androidenv/deploy-androidpackage.nix
index 4f9db98c006..f23558ebc5c 100644
--- a/pkgs/development/mobile/androidenv/deploy-androidpackage.nix
+++ b/pkgs/development/mobile/androidenv/deploy-androidpackage.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation ({
     packageBaseDir=$out/libexec/android-sdk/${package.path}
     mkdir -p $packageBaseDir
     cd $packageBaseDir
-    cp -av $sourceRoot/* .
+    cp -a $sourceRoot/* .
     ${patchInstructions}
   '';