ebm 0.0.17 → 0.0.18
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/commands/commit.rb +1 -1
- data/lib/info.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
data.tar.gz:
|
4
|
-
metadata.gz:
|
3
|
+
data.tar.gz: 054a43e27ff850ce50b8a6016e16c716c43c72df
|
4
|
+
metadata.gz: 725049dddcbcda6586530d30172bd63ddb40284c
|
5
5
|
SHA512:
|
6
|
-
data.tar.gz:
|
7
|
-
metadata.gz:
|
6
|
+
data.tar.gz: c0f5c970fd31f843519d1f7e7c93ba7a0043ed0c10d470bdcace4c758e23862496e0211f912d94babb4aec8982a6ed6d4163b177ee64927d337327587ad26e08
|
7
|
+
metadata.gz: 54565013237ff4753b466adf7b47645fbc69b332eb3d6649593659396cce5718904b03bba06d71e44304ec6ac9f7fc1c3cfcce5bbc0e4f635f8810381e126880
|
data/lib/commands/commit.rb
CHANGED
@@ -75,7 +75,7 @@ module Commands
|
|
75
75
|
if exit_code != 0
|
76
76
|
line = msg.split("\n").last # last line
|
77
77
|
# ugly hack to not show as error when nothing to commit
|
78
|
-
if line
|
78
|
+
if line.include?("nothing to commit")
|
79
79
|
raise "Git commit failed for #{repo_name}."
|
80
80
|
end
|
81
81
|
end
|
data/lib/info.rb
CHANGED