Skip to content

Commit

Permalink
Build/Test Tools: Correct conditional logic in [58269].
Browse files Browse the repository at this point in the history
See #60127, #61213.

git-svn-id: https://develop.svn.wordpress.org/trunk@58270 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
desrosj committed May 31, 2024
1 parent 6a697a2 commit 2303441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ env:
TARGET_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }}

LOCAL_PHP_MEMCACHED: ${{ inputs.memcached }}
LOCAL_PHP: ${{ inputs.php-version }}${{ 'latest' != inputs.php-version && '-fpm' }}
LOCAL_PHP: ${{ inputs.php-version }}${{ 'latest' != inputs.php-version && '-fpm' || '' }}

jobs:
# Performs the following steps:
Expand Down

0 comments on commit 2303441

Please sign in to comment.