mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
'use strict';
|
|
|
|
const libvips = require('../lib/libvips');
|
|
|
|
try {
|
|
if (!(libvips.useGlobalLibvips() || libvips.hasVendoredLibvips())) {
|
|
process.exitCode = 1;
|
|
}
|
|
} catch (err) {
|
|
process.exitCode = 1;
|
|
}
|