k8s-deploy 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/k8s-deploy/tasks/check.rb +1 -1
- data/lib/k8s-deploy/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: 8d15916782174de67fb36bb5aba738adaeb8e6d0
|
4
|
+
data.tar.gz: 6c68cac0cb03db700fba05b1862d3088d8a21cf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ebe797868e36cd416ba4c3f56e2d9b92fca3012efe18311de2348a1302974b9f64cbf74d7974f7453a5c123795ce2785267376249b35541cf2638c877a63c35
|
7
|
+
data.tar.gz: 05e4f240b55bd3a12e9faf8a918b95ec5ab23d04370622d62c475aa0e18ec2423f44677afdc390b17872d242ab111899eb08a7f068ba6e7c431efa2086ff0539
|
@@ -1,6 +1,6 @@
|
|
1
1
|
def print_git_check_branch(configuration)
|
2
2
|
conf_branch = configuration['git_branch']
|
3
|
-
local_branch = `git rev-parse --abbrev-ref HEAD
|
3
|
+
local_branch = `git rev-parse --abbrev-ref HEAD`.strip
|
4
4
|
check_result = local_branch == conf_branch
|
5
5
|
|
6
6
|
puts 'Your local branch must be ' \
|
data/lib/k8s-deploy/version.rb
CHANGED