Skip to content

Commit 98e5868

Browse files
authored
Fix alignment
1 parent 6552b3a commit 98e5868

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WP_CLI/PackageValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ private static function is_unzip_available() {
7777
// Check if unzip is in PATH by trying to get its version.
7878
// Suppress output to avoid cluttering the console.
7979
// Note: Redirection to null device is safe as the device path is a hardcoded constant.
80-
$null_device = '\\' === DIRECTORY_SEPARATOR ? 'NUL' : '/dev/null';
81-
$result = WP_CLI::launch(
80+
$null_device = '\\' === DIRECTORY_SEPARATOR ? 'NUL' : '/dev/null';
81+
$result = WP_CLI::launch(
8282
'unzip -v > ' . escapeshellarg( $null_device ) . ' 2>&1',
8383
false,
8484
true

0 commit comments

Comments
 (0)