DataObjects/Core_image_type.php
[Pman.Core] / JsCompile.php
index a240815..38c9003 100644 (file)
@@ -91,10 +91,9 @@ class Pman_Core_JsCompile  extends Pman
         }  
         
         // should we be more specirfic!??!?!?
-        
-        $buildjs = 
+         
         $cmd = "$seed {$o['jspacker']}/pack.js -m $proj  -a  $src/*.js";
-        echo $cmd;
+        echo "$cmd\n";
         passthru($cmd);
         // technically we should trash old compiled files.. 
         // or we move towards a 'cache in session directory model..'
@@ -141,7 +140,8 @@ class Pman_Core_JsCompile  extends Pman
     }
     
     function gatherProjects() {
-        $src =  realpath(dirname(__FILE__).'/../');
+        $src= array_shift(explode(PATH_SEPARATOR, ini_get('include_path'))) .'/Pman';
+        
         $ret = array();
         foreach(scandir($src) as $f) {
             if (!strlen($f) || $f[0] == '.') {