Commit 96fc8d25 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix static files copy in wordpress entrypoint

parent 9beef545
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -108,7 +108,9 @@ update_all() {
	wp language plugin update --all
	wp language theme update --all

	find -name wp-content -prune -o -type f -not -iname '*.php' \
	find -name wp-content -prune \
		-o -name static -prune \
		-o -type f -not -iname '*.php' \
		-exec install -vD '{}' 'static/{}' \;
}