Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/core.feature
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Feature: Manage WordPress installation
"""
And the return code should be 0

When I run `wp eval 'echo $GLOBALS["current_site"]->domain;'`
When I run `wp eval "echo $GLOBALS['current_site']->domain;"`
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this change improves Windows compatibility for this command, other wp eval calls in this file still use single quotes (e.g., on line 249), which can cause parsing issues on Windows. For consistency and to fully address the compatibility issue, please consider updating all wp eval calls in this file to use double quotes for the command argument.

Then STDOUT should be:
"""
foobar.org
Expand Down
Loading