We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libgpgme
1 parent fbb8999 commit f86e4fdCopy full SHA for f86e4fd
utils/lib-copy/copy-dependencies.php
@@ -36,7 +36,12 @@
36
$librariesThatExistOnLambda = array_map('trim', $librariesThatExistOnLambda);
37
// For some reason some libraries are actually not in Lambda, despite being in the docker image 🤷
38
$librariesThatExistOnLambda = array_filter($librariesThatExistOnLambda, function ($library) {
39
- return ! str_contains($library, 'libgcrypt.so') && ! str_contains($library, 'libgpg-error.so');
+ 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
+ ;
45
});
46
47
$requiredLibraries = listDependencies($pathToCheck);
0 commit comments