cocoapods-git-private-repo 0.1.0 → 0.1.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64ad4c9635626572cb5461ff9fdaacdb5d4150d1c5e21e16d6ae5578808272ae
|
4
|
+
data.tar.gz: acea8c50b5467f995435f869720462bdb84644c120fa21d3052956b605148593
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8d1b3895726ea6d9a07ed63194c34813627f68136c252731d8e6d0f1045db49134176c8d2c4b08794773c6b5034c0db18339fb9400ff06ed6c2b4bdea21756e
|
7
|
+
data.tar.gz: 4d311f1b67b101ee3266d1182bc3a5cb6b713e24fcc1fa6bbbf2309300635c2ed588c3307d0c77c6355575f6d3ff0379bdc35ccc11d6adfbb66cfc002309a68f
|
@@ -7,8 +7,6 @@ module Pod
|
|
7
7
|
# Check if a JSON configuration file exists with private key mappings
|
8
8
|
json_config_path = 'keys.json'
|
9
9
|
|
10
|
-
puts "file path: #{json_config_path}"
|
11
|
-
|
12
10
|
# Only proceed with JSON processing if the file exists
|
13
11
|
return unless File.exist?(json_config_path)
|
14
12
|
|
@@ -28,9 +26,6 @@ module Pod
|
|
28
26
|
end
|
29
27
|
|
30
28
|
def execute_command(executable, command, raise_on_failure = false)
|
31
|
-
puts "Executing command: #{executable} #{command.inspect}"
|
32
|
-
puts "Options: #{self.options.inspect}"
|
33
|
-
|
34
29
|
if executable == 'git' && options[:private_key_path]
|
35
30
|
private_key = options[:private_key_path]
|
36
31
|
|