nixenvironment 0.0.63 → 0.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/nixenvironment/archiver.rb +1 -7
- data/lib/nixenvironment/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba7af3de08aa524c27d0c8bbf905e3c5cb153c15
|
|
4
|
+
data.tar.gz: eb41458df4e6085ac8f64119654ab451355978c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80b9a44cd70a98690058cefa4538095eb0059c12584584af0abf4c7cc4fefbe129e875e36eeb32657177274cf9fa9edcd94a8a5784d388e2391deffbecd89f85
|
|
7
|
+
data.tar.gz: c83169a8e4ccca18961b649274fd53edc653d9c5b1959f36fb58d73a66b3c277033583b3eef48ecf953099d514998296791271d20af799d1df64ed7fc970b3bc
|
|
@@ -666,13 +666,7 @@ NAME_FOR_DEPLOYMENT='#{configuration}'
|
|
|
666
666
|
keychain_name = 'XCodeKeys'
|
|
667
667
|
keychain_path = %x[ security list | grep '#{keychain_name}' | sed 's/\"//g' | xargs ].strip
|
|
668
668
|
security_report = %x[ '#{IDENTITIESLIST_UTILITY_PATH}' -k '#{keychain_path}' ]
|
|
669
|
-
|
|
670
|
-
# TODO: remove after debugging!
|
|
671
|
-
puts '*****************************************'
|
|
672
|
-
security_report.lines.each { |line| puts line }
|
|
673
|
-
puts '*****************************************'
|
|
674
|
-
|
|
675
|
-
entries = security_report.split(/\n/)
|
|
669
|
+
entries = security_report.lines.collect(&:strip)
|
|
676
670
|
entries.to_set
|
|
677
671
|
end
|
|
678
672
|
|