Skip to content

Commit cc78f9a

Browse files
committedJan 9, 2018
titaniumenv: fix path to IPA build product
(cherry picked from commit 792d48b)
1 parent d202e30 commit cc78f9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pkgs/development/mobile/titaniumenv/build-app.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ stdenv.mkDerivation {
186186
''
187187
cp -av build/iphone/build/* $out
188188
mkdir -p $out/nix-support
189-
echo "file binary-dist \"$(echo $out/Products/Release-iphoneos/*.ipa)\"" > $out/nix-support/hydra-build-products
189+
echo "file binary-dist \"$(echo $out/*.ipa)\"" > $out/nix-support/hydra-build-products
190190
191191
${stdenv.lib.optionalString enableWirelessDistribution ''
192-
appname=$(basename $out/Products/Release-iphoneos/*.ipa .ipa)
192+
appname=$(basename $out/*.ipa .ipa)
193193
bundleId=$(grep '<id>[a-zA-Z0-9.]*</id>' tiapp.xml | sed -e 's|<id>||' -e 's|</id>||' -e 's/ //g')
194194
version=$(grep '<version>[a-zA-Z0-9.]*</version>' tiapp.xml | sed -e 's|<version>||' -e 's|</version>||' -e 's/ //g')
195195

0 commit comments

Comments
 (0)
Please sign in to comment.