astro-ghostcms/.pnpm-store/v3/files/e6/a2dfe113212919c08e218c24bc8...

15 lines
292 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
// Copyright 2013 Lovell Fuller and others.
// SPDX-License-Identifier: Apache-2.0
'use strict';
const libvips = require('../lib/libvips');
try {
if (!(libvips.useGlobalLibvips() || libvips.hasVendoredLibvips())) {
process.exitCode = 1;
}
} catch (err) {
process.exitCode = 1;
}