prima-twig 0.49.29 → 0.49.30
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 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d86f9c4ac90cbe5c02010b1958baa8e15be5d683c80520adadd6baa1b4d87e9
|
|
4
|
+
data.tar.gz: d95126d1bbb81909a7a38addf6dfe8c9e0d514b029bcfe791fa9f2b33b08d52f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5f3d141bce5c160daa4f791f59ee9615333db1e8c7c2c629a767be51e9375ce2f40815adf716921740886e16c3aa1bb2f76e01de2bd6aa84a7f4cf5e493f0f9
|
|
7
|
+
data.tar.gz: abfd891aad8e01f347a73632c92927c42a1b4233608cf0d0ab9d547dfe77a40937eb3bef6f563de4594ead902615b77fa1d5863787f9a1b3f8cd0cebabd687f5
|
data/bin/twig-feature
CHANGED
|
@@ -2156,12 +2156,17 @@ class Release
|
|
|
2156
2156
|
end
|
|
2157
2157
|
|
|
2158
2158
|
def deploy_pyxis?
|
|
2159
|
+
output "deploy_pyxis: #{@deploy_pyxis}".yellow
|
|
2159
2160
|
if defined? @deploy_pyxis
|
|
2160
2161
|
@deploy_pyxis
|
|
2161
2162
|
else
|
|
2163
|
+
output `git log -p -1 --unified=0 | grep pyxis-npm:`.yellow
|
|
2162
2164
|
pyxis_updated = `git log -p -1 --unified=0 | grep pyxis-npm:`.length > 0
|
|
2165
|
+
output "pyxis empty: #{!@projects['pyxis-npm'].empty?} pyxis name: #{@projects['pyxis-npm'][:name] != 'master'} pyxis updated: #{pyxis_updated}".yellow
|
|
2163
2166
|
update_pyxis = !@projects['pyxis-npm'].empty? && @projects['pyxis-npm'][:name] != 'master' && pyxis_updated
|
|
2167
|
+
output "update_pyxis: #{@update_pyxis}".yellow
|
|
2164
2168
|
@deploy_pyxis = update_pyxis
|
|
2169
|
+
output "deploy_pyxis: #{@deploy_pyxis}".yellow
|
|
2165
2170
|
return update_pyxis
|
|
2166
2171
|
end
|
|
2167
2172
|
end
|