Use EXTENSION_PATH to specify subdirectory in add_extension_from_source

This commit is contained in:
Shivam Mathur
2021-04-19 17:03:57 +05:30
parent 909090903e
commit fe944a16b5
10 changed files with 25 additions and 28 deletions

View File

@ -154,7 +154,7 @@ describe('Extension tests', () => {
'linux'
);
expect(linux).toContain(
'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver . master extension'
'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver master extension'
);
});
@ -252,7 +252,7 @@ describe('Extension tests', () => {
'darwin'
);
expect(darwin).toContain(
'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver . master extension'
'add_extension_from_source mongodb https://github.com mongodb mongo-php-driver master extension'
);
});
});