Skip to content

Commit

Permalink
titaniumenv: fix nasty IPA generation bug
Browse files Browse the repository at this point in the history
(cherry picked from commit 0d7a0d7)
  • Loading branch information
svanderburg committed Jan 31, 2018
1 parent 31ec7ad commit 2b89abe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
Expand Up @@ -23,7 +23,11 @@ stdenv.mkDerivation {
cd mobilesdk/*
mv * 6.3.1.GA
cd *
${stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") ''
# Fixes a bad archive copying error when generating an IPA file
sed -i -e "s|cp -rf|/bin/cp -rf|" iphone/cli/commands/_build.js
''}
# Patch some executables
${if stdenv.system == "i686-linux" then
Expand Down

0 comments on commit 2b89abe

Please sign in to comment.