File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 65
65
connection : local
66
66
shell : vagrant ssh -- "cd {{ project_current }} && wp search-replace '//{{ domain_env }}' '//{{ domain_dev }}' --all-tables --skip-plugins --skip-themes"
67
67
68
+ - name : PULL > Replace emails "@{{ domain_env }}" => "@{{ domain_dev }}" on development
69
+ connection : local
70
+ shell : vagrant ssh -- "cd {{ project_current }} && wp search-replace '@{{ domain_env }}' '@{{ domain_dev }}' --all-tables --skip-plugins --skip-themes"
71
+
68
72
- name : PULL > Replace Elementor urls "{{ url_env }}" => "{{ url_dev }}" on development
69
73
connection : local
70
74
shell : vagrant ssh -- "cd {{ project_current }} && wp cli has-command 'elementor' && [ $? -eq 0 ] && wp elementor replace_urls '{{ url_env }}' '{{ url_dev }}' --skip-themes || cd ."
122
126
args :
123
127
chdir : " {{ project_current }}"
124
128
129
+ - name : PUSH > Replace emails "@{{ domain_dev }}" => "@{{ domain_env }}" on {{ env }}
130
+ command : wp search-replace '@{{ domain_dev }}' '@{{ domain_env }}' --all-tables --skip-plugins --skip-themes
131
+ args :
132
+ chdir : " {{ project_current }}"
133
+
125
134
- name : PUSH > Replace Elementor urls "{{ url_dev }}" => "{{ url_env }}" on {{ env }}
126
135
shell : wp cli has-command 'elementor' && [ $? -eq 0 ] && wp elementor replace_urls '{{ url_dev }}' '{{ url_env }}' --skip-themes || cd .
127
136
args :
You can’t perform that action at this time.
0 commit comments