summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2019-02-23 14:57:49 +0100
committerSander van der Burg <svanderburg@gmail.com>2019-02-23 14:57:49 +0100
commit041b40105ca7976d774e72af392c0a67852f258c (patch)
tree978b836c2d24610014a6ad344ca742d22e901d26 /pkgs/development/mobile
parent9b94554008b25d1568b461c717adf44b9fed1d01 (diff)
downloadnixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar.gz
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar.bz2
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar.lz
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar.xz
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.tar.zst
nixpkgs-041b40105ca7976d774e72af392c0a67852f258c.zip
titaniumenv: fix deriving path to the IPA file
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/titaniumenv/build-app.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix
index aac94fe6130..b3c8d380819 100644
--- a/pkgs/development/mobile/titaniumenv/build-app.nix
+++ b/pkgs/development/mobile/titaniumenv/build-app.nix
@@ -173,7 +173,7 @@ stdenv.mkDerivation ({
         echo "file binary-dist \"$(echo $out/*.ipa)\"" > $out/nix-support/hydra-build-products
 
         ${stdenv.lib.optionalString enableWirelessDistribution ''
-          appname="$(basename "$out/*.ipa" .ipa)"
+          appname="$(basename $out/*.ipa .ipa)"
           bundleId=$(grep '<id>[a-zA-Z0-9.]*</id>' tiapp.xml | sed -e 's|<id>||' -e 's|</id>||' -e 's/ //g')
           version=$(grep '<version>[a-zA-Z0-9.]*</version>' tiapp.xml | sed -e 's|<version>||' -e 's|</version>||' -e 's/ //g')