summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2013-03-21 14:21:20 +0100
committerSander van der Burg <svanderburg@gmail.com>2013-03-21 14:21:20 +0100
commit770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5 (patch)
treeeca750b81fb9351e46aa59ee368dbbbf4b6f3156 /pkgs
parent647bca444ced822a2735cbd39c23eff67b785729 (diff)
downloadnixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar.gz
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar.bz2
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar.lz
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar.xz
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.tar.zst
nixlib-770741b5b44cd13b12c2f0219c0c6b6a2e3a1eb5.zip
androidenv: fix error with obsolete quotation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/mobile/androidenv/build-app.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/mobile/androidenv/build-app.nix b/pkgs/development/mobile/androidenv/build-app.nix
index cf1d1fce50f0..8b770ede0fc7 100644
--- a/pkgs/development/mobile/androidenv/build-app.nix
+++ b/pkgs/development/mobile/androidenv/build-app.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
   
   installPhase = ''
     mkdir -p $out
-    mv "bin/*-${if release then "release" else "debug"}.apk" $out
+    mv bin/*-${if release then "release" else "debug"}.apk $out
     
     mkdir -p $out/nix-support
     echo "file binary-dist \"$(echo $out/*.apk)\"" > $out/nix-support/hydra-build-products