mcrt 1.3.0 → 1.4.0
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/mcrt.rb +2 -2
- data/mcrt.gemspec +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: 21e88975eceade72eed20ef8be69a9a1beb6402f
|
|
4
|
+
data.tar.gz: a1af957e9c9adc654ed7b177693d98402c5c5fc0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2ef8c94450bf9c657ba33ee1122fbc92e0bdcf932207d4133d311d27fba40ed9c022283a28435e9ba0cfd8e58e768e42bd9ea18cec6a46b52b47f83da6d5091
|
|
7
|
+
data.tar.gz: 3e5a7166739d58e690b1910e7a1f276283083b3269cbd94805ba60469b08f5a4bcfc1e91fdfe9d79255b4d1d521c33becbcd39ff39541510f1ed64503dae46f9
|
data/lib/mcrt.rb
CHANGED
|
@@ -104,9 +104,9 @@ class MavenCentralPublishTool
|
|
|
104
104
|
end
|
|
105
105
|
repositories = get_staging_repositories(profile_name, false)
|
|
106
106
|
while repositories.size == 1
|
|
107
|
-
puts
|
|
107
|
+
puts 'Waiting for repository to be promoted...'
|
|
108
108
|
sleep 1
|
|
109
|
-
if repositories[0][
|
|
109
|
+
if repositories[0]['notifications'] != 0
|
|
110
110
|
raise 'Failed to promote repository. Please visit the website https://oss.sonatype.org/index.html#stagingRepositories and manually complete the release.'
|
|
111
111
|
end
|
|
112
112
|
repositories = get_staging_repositories(profile_name, false)
|
data/mcrt.gemspec
CHANGED