prima-twig 0.39.5 → 0.39.6
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 +6 -2
- 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: 1703e8ab5625a55673c44eb226c3ed4622324322
|
|
4
|
+
data.tar.gz: dbe2e7f64fcdf7badae938c5aadc0c38333eaa05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8be5a0900bf1ea6ace9352722ae91046ebbef48b399485dc08b900c62bf94b114b7f0cbc6abf5252b1b9993f563c3017d65e08613f68c5b03f9700335a9fc18
|
|
7
|
+
data.tar.gz: c7ffdd8bc2c8955dd9c494feee5bf8a9a0350cb5ecd163809c88e7e7ad86f1e723f062d51d3a962c08cb0b29f5d9c55a592ee54151ab7b07d7d5bbb715bd4a2f
|
data/bin/twig-feature
CHANGED
|
@@ -530,7 +530,12 @@ class Release
|
|
|
530
530
|
|
|
531
531
|
File.open('branch_names', 'w') { |file| file.write(branches) }
|
|
532
532
|
|
|
533
|
-
`git
|
|
533
|
+
if `git log -1` =~ /minimal_/
|
|
534
|
+
`git commit -am 'minimal_update'`
|
|
535
|
+
else
|
|
536
|
+
`git commit -am 'update'`
|
|
537
|
+
end
|
|
538
|
+
`git push && git checkout master`
|
|
534
539
|
end
|
|
535
540
|
|
|
536
541
|
def qainit_deploy_shutdown!
|
|
@@ -660,7 +665,6 @@ class Release
|
|
|
660
665
|
end
|
|
661
666
|
|
|
662
667
|
def qainit_drone_minimal_deploy!
|
|
663
|
-
# binding.pry
|
|
664
668
|
# tenere solo il project da deployare (l'unico project è prima/crash)
|
|
665
669
|
project = ''
|
|
666
670
|
@projects.each_key do |project_key|
|