summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2016-02-02 13:42:15 +0000
committerSander van der Burg <svanderburg@gmail.com>2016-02-02 13:42:15 +0000
commitb90f0116cd9581ba713cb58a5d51e5cc537795b3 (patch)
tree036ead32496374caa9d94cac370e9291f443213c /pkgs/development/mobile/titaniumenv
parent94c9cf687704acd4204cc69130ba33cd4a37841b (diff)
downloadnixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar.gz
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar.bz2
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar.lz
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar.xz
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.tar.zst
nixpkgs-b90f0116cd9581ba713cb58a5d51e5cc537795b3.zip
titaniumenv: allow distributions of app with spaces in their name
Diffstat (limited to 'pkgs/development/mobile/titaniumenv')
-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 934d032e479..fb25037e167 100644
--- a/pkgs/development/mobile/titaniumenv/build-app.nix
+++ b/pkgs/development/mobile/titaniumenv/build-app.nix
@@ -191,7 +191,7 @@ stdenv.mkDerivation {
                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')
                
-               sed -e "s|@INSTALL_URL@|${installURL}?bundleId=$bundleId\&amp;version=$version\&amp;title=$appname|" ${../xcodeenv/install.html.template} > $out/$appname.html
+               sed -e "s|@INSTALL_URL@|${installURL}?bundleId=$bundleId\&amp;version=$version\&amp;title=$appname|" ${../xcodeenv/install.html.template} > "$out/$appname.html"
                echo "doc install \"$out/$appname.html\"" >> $out/nix-support/hydra-build-products
              ''}
            ''