Skip to content

Commit

Permalink
titaniumenv: fix path to IPA build product
Browse files Browse the repository at this point in the history
  • Loading branch information
svanderburg committed Jan 9, 2018
1 parent 18cf038 commit 792d48b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/mobile/titaniumenv/build-app.nix
Expand Up @@ -186,10 +186,10 @@ stdenv.mkDerivation {
''
cp -av build/iphone/build/* $out
mkdir -p $out/nix-support
echo "file binary-dist \"$(echo $out/Products/Release-iphoneos/*.ipa)\"" > $out/nix-support/hydra-build-products
echo "file binary-dist \"$(echo $out/*.ipa)\"" > $out/nix-support/hydra-build-products
${stdenv.lib.optionalString enableWirelessDistribution ''
appname=$(basename $out/Products/Release-iphoneos/*.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')
Expand Down

0 comments on commit 792d48b

Please sign in to comment.