tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Support UUIDs in lowercase
Sander van der Burg
11 years ago
d3d31200
a49e2f86
+2
-2
2 changed files
expand all
collapse all
unified
split
pkgs
development
mobile
titaniumenv
build-app.nix
xcodeenv
build-app.nix
+1
-1
pkgs/development/mobile/titaniumenv/build-app.nix
···
67
67
security unlock-keychain -p "" $keychainName
68
68
security import ${iosCertificate} -k $keychainName -P "${iosCertificatePassword}" -A
69
69
70
70
-
provisioningId=$(grep UUID -A1 -a ${iosMobileProvisioningProfile} | grep -o "[-A-Z0-9]\{36\}")
70
70
+
provisioningId=$(grep UUID -A1 -a ${iosMobileProvisioningProfile} | grep -o "[-A-Za-z0-9]\{36\}")
71
71
72
72
# Ensure that the requested provisioning profile can be found
73
73
+1
-1
pkgs/development/mobile/xcodeenv/build-app.nix
···
60
60
security import ${certificateFile} -k $keychainName -P "${certificatePassword}" -A
61
61
62
62
# Determine provisioning ID
63
63
-
PROVISIONING_PROFILE=$(grep UUID -A1 -a ${provisioningProfile} | grep -o "[-A-Z0-9]\{36\}")
63
63
+
PROVISIONING_PROFILE=$(grep UUID -A1 -a ${provisioningProfile} | grep -o "[-A-Za-z0-9]\{36\}")
64
64
65
65
if [ ! -f "$HOME/Library/MobileDevice/Provisioning Profiles/$PROVISIONING_PROFILE.mobileprovision" ]
66
66
then