Skip to content

Commit

Permalink
Fix comma
Browse files Browse the repository at this point in the history
  • Loading branch information
dixyes committed Sep 24, 2023
1 parent 7282013 commit 435a58e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
$maxLibraries = [
// compression
'zlib','zstd','bzip2''xz','brotli','libzip',
'zlib','zstd','bzip2','xz','brotli','libzip',
// curl and its deps
'nghttp2','libssh2','curl',
'libffi',
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
'yaml',
'posix','pcntl',
'sysvshm','sysvsem','sysvmsg',
'gd'
'gd',
];
$maxExtensions = implode(',', $maxExtensions);
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:
$maxLibraries = [
// compression
'zlib','zstd','bzip2''xz','brotli','libzip',
'zlib','zstd','bzip2','xz','brotli','libzip',
// curl and its deps
'nghttp2','libssh2','curl',
'libffi',
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
'yaml',
'posix','pcntl',
'sysvshm','sysvsem','sysvmsg',
'gd'
'gd',
];
$maxExtensions = implode(',', $maxExtensions);
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ jobs:
$maxLibraries = [
// compression
'zlib','zstd','bzip2''xz','brotli','libzip',
'zlib','zstd','bzip2','xz','brotli','libzip',
// curl and its deps
'nghttp2','libssh2','curl',
'libffi',
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
'sockets',
'openssl',
'yaml',
'gd'
'gd',
];
$maxExtensions = implode(',', $maxExtensions);
Expand Down

0 comments on commit 435a58e

Please sign in to comment.