Skip to content
Snippets Groups Projects
acf-weblog.post-upgrade 227 B
#!/bin/sh

new=$1
old=$2

if [ "$(apk version -t $old 0.6.0)" = "<" ]; then
	mkdir /etc/weblog
	mv /etc/weblog.conf /etc/weblog/
	cat <<EOF
*
* NOTE: You need to manually run /usr/sbin/acf-weblog-update-schema
*
EOF
fi

exit 0