Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Fix typo in add_other_users(): replace "%%" with "&&" (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
waclawjacek authored Sep 5, 2024
1 parent cfcc08d commit edc5aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stuff.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function add_other_users() {
$cmd = 'wp user create editor [email protected] --role=editor'
. ' && wp user create author [email protected] --role=author'
. ' && wp user create contributor [email protected] --role=contributor'
. ' %% wp user create subscriber [email protected] --role=subscriber';
. ' && wp user create subscriber [email protected] --role=subscriber';
add_filter(
'jurassic_ninja_feature_command',
function ( $s ) use ( $cmd ) {
Expand Down

0 comments on commit edc5aad

Please sign in to comment.