File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 3636$ librariesThatExistOnLambda = array_map ('trim ' , $ librariesThatExistOnLambda );
3737// For some reason some libraries are actually not in Lambda, despite being in the docker image 🤷
3838$ librariesThatExistOnLambda = array_filter ($ librariesThatExistOnLambda , function ($ library ) {
39- return ! str_contains ($ library , 'libgcrypt.so ' ) && ! str_contains ($ library , 'libgpg-error.so ' );
39+ return ! str_contains ($ library , 'libgcrypt.so ' )
40+ && ! str_contains ($ library , 'libgobject-2.0.so ' )
41+ && ! str_contains ($ library , 'libgpg-error.so ' )
42+ && ! str_contains ($ library , 'libgpgme-pthread.so ' )
43+ && ! str_contains ($ library , 'libgpgme.so ' )
44+ ;
4045});
4146
4247$ requiredLibraries = listDependencies ($ pathToCheck );
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ libcrypto.so.1.0.2k
2929libcrypt.so.1
3030libc.so.6
3131libcurl.so.4
32- libcurl.so.4.7 .0
32+ libcurl.so.4.8 .0
3333libdb-5.3.so
3434libdb-5.so
3535libdl-2.26.so
@@ -182,6 +182,8 @@ libpng15.so.15
182182libpng15.so.15.13.0
183183libpopt.so.0
184184libpopt.so.0.0.0
185+ libpsl.so.5
186+ libpsl.so.5.3.5
185187libpsx.so.2
186188libpsx.so.2.54
187189libpthread-2.26.so
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ libcrypto.so.1.0.2k
2929libcrypt.so.1
3030libc.so.6
3131libcurl.so.4
32- libcurl.so.4.7 .0
32+ libcurl.so.4.8 .0
3333libdb-5.3.so
3434libdb-5.so
3535libdl-2.26.so
@@ -184,6 +184,8 @@ libpng15.so.15
184184libpng15.so.15.13.0
185185libpopt.so.0
186186libpopt.so.0.0.0
187+ libpsl.so.5
188+ libpsl.so.5.3.5
187189libpsx.so.2
188190libpsx.so.2.54
189191libpthread-2.26.so
You can’t perform that action at this time.
0 commit comments