Changeset 2373
- Timestamp:
- 10/11/06 19:57:22 (2 years ago)
- Files:
-
- tools/pake/trunk/lib/pake/pakeApp.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/pake/trunk/lib/pake/pakeApp.class.php
r2360 r2373 98 98 } 99 99 100 public function run($pakefile = null, $options = null )100 public function run($pakefile = null, $options = null, $load_pakefile = true) 101 101 { 102 102 if ($pakefile) … … 106 106 107 107 $this->handle_options($options); 108 $this->load_pakefile(); 108 if ($load_pakefile) 109 { 110 $this->load_pakefile(); 111 } 109 112 110 113 if ($this->show_tasks)