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.
1 parent 048eb60 commit 16d7689Copy full SHA for 16d7689
bin/clish
@@ -13,6 +13,12 @@ if (\Phar::running() && !\extension_loaded('zlib')) {
13
exit(1);
14
}
15
16
+if (!\extension_loaded('gd')) {
17
+ echo "clish requires gd extension for exporting highlighted code to png image\n";
18
+
19
+ exit(1);
20
+}
21
22
if (\file_exists(__DIR__ . '/../../../autoload.php')) {
23
require __DIR__ . '/../../../autoload.php';
24
} elseif (\file_exists(__DIR__ . '/../../autoload.php')) {
0 commit comments