1
0
mirror of https://github.com/mrclay/minify.git synced 2025-03-13 17:09:39 +01:00

get rid of $min_libPath

This commit is contained in:
Elan Ruusamäe 2014-10-12 17:21:21 +03:00
parent 4b8de3d14c
commit 0cbbcd0a53
2 changed files with 1 additions and 10 deletions

View File

@ -180,12 +180,5 @@ $min_symlinks = array();
$min_uploaderHoursBehind = 0;
/**
* Path to Minify's lib folder. If you happen to move it, change
* this accordingly.
*/
$min_libPath = dirname(__FILE__) . '/lib';
// try to disable output_compression (may not have an effect)
ini_set('zlib.output_compression', '0');

View File

@ -1,9 +1,7 @@
#!/usr/bin/php
<?php
$pathToLib = dirname(dirname(__DIR__)) . '/min/lib';
require "$min_libPath/Minify/Loader.php";
require dirname(dirname(__DIR__)) . '/min/lib/Minify/Loader.php';
$cli = new MrClay\Cli;