diff --git a/migrations/2022-04-11-apply-last-np.sh b/migrations/2022-04-11-apply-last-np.sh
index c27a60487285ef6f681aef8a189c05510e2e14c3..323eb4be669b90b819adffb06fbfb5d46df5842f 100755
--- a/migrations/2022-04-11-apply-last-np.sh
+++ b/migrations/2022-04-11-apply-last-np.sh
@@ -1,6 +1,6 @@
 #!/bin/bash -eux
 
 for NS in `kubectl get ns --no-headers -o custom-columns=":metadata.name" -l libre.sh/scope=user`; do
-  kubctl -n ${NS} delete networkpolicies allow-from-ingress-namespace
-  cat "/root/domains/common/networkpolicies.yml" | envsubst '$NS' | kubectl -n ${NS} diff -f -
+  kubectl -n ${NS} delete networkpolicies allow-from-ingress-namespace
+  cat "/root/domains/common/networkpolicies.yml" | envsubst '$NS' | kubectl -n ${NS} apply -f -
 done