We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146243a commit e1ee351Copy full SHA for e1ee351
1 file changed
updates/release-2026.05.13.1151.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+# Remove stale wpses_options row that ships from the site template.
4
+# Holds a now-burned AWS SES access key + secret. See pc-dev-issues #274 and #273.
5
+if wp option get wpses_options --allow-root > /dev/null 2>&1; then
6
+ wp option delete wpses_options --allow-root
7
+ echo "Deleted wpses_options"
8
+else
9
+ echo "wpses_options not present, skipping"
10
+fi
0 commit comments