prima-twig 0.36.75 → 0.36.76
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/bin/twig-feature +5 -3
- 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: 1de43686bafc7d552d97bbd45e16019826e72618
|
|
4
|
+
data.tar.gz: bc3e5e259f13b62351fa43c09bdeaa3a59e5c189
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 057dff59c673ef4b52b863f3bcd90b0c05b1403ad3dd253210c8ce7e227b397f7a47c9dcdf9e8a3f27fa1353716f64d0ba09fc9502b588826de0b0ba88cf715e
|
|
7
|
+
data.tar.gz: 79de75df37aa1afb44b033accb43b2037dfa637d8bbda32e1ded20f62c9dba7d630e746e943ff30f17a7f0df4258ed3ff401d162b45afd8b53e82d1b6994ce4f
|
data/bin/twig-feature
CHANGED
|
@@ -451,8 +451,10 @@ class Release
|
|
|
451
451
|
menu.prompt = "Scegli il QA che vuoi aggiornare: ".cyan
|
|
452
452
|
menu.shell = true
|
|
453
453
|
former_branches.each do |branch|
|
|
454
|
-
|
|
455
|
-
|
|
454
|
+
unless 'master' == branch
|
|
455
|
+
msg = branch.light_blue
|
|
456
|
+
menu.choice(msg) { branch }
|
|
457
|
+
end
|
|
456
458
|
end
|
|
457
459
|
end
|
|
458
460
|
# checkout master, checkout branch, pull branch
|
|
@@ -522,7 +524,7 @@ class Release
|
|
|
522
524
|
end
|
|
523
525
|
end
|
|
524
526
|
|
|
525
|
-
cluster_stack_name = "ecs-cluster-#{env_hash}"
|
|
527
|
+
cluster_stack_name = "ecs-cluster-qa-#{env_hash}"
|
|
526
528
|
aggregator_enabled = get_stack_tags(cluster_stack_name).detect do |tag|
|
|
527
529
|
tag.key === "hostname_pattern_priority" and tag.value === "1"
|
|
528
530
|
end.is_a?(Aws::CloudFormation::Types::Tag)
|