Hi there

Great software first of all. I decided to make a language pack following the instructions on the wiki. however when I upload it I get the meassge as in the title
Code:
Mode of operation not specified
No output in the upgradeWizard.log or sugarcrm.log or apache logs to indicate an error. All files owned by wwwrun:www on the server. All at least rw by wwwrun. Is there a clue I'm missing from the error?

Thanks
Patrick

Here's my manifest.php

Code:
<?php
$manifest = array (
  'acceptable_sugar_versions' =>
  array (
    'exact_matches' =>
    array (
    ),
    'regex_matches' =>
    array (
    	0 => '5\.2\.0[a-z]?'
    ),
  ),
  'acceptable_sugar_flavors' =>
  array (
    0 => 'CE',
    1 => 'PRO',
    2 => 'ENT',
  ),
  'name' => 'English (Irish) Language',
  'description' => 'English (Irish) Language files for SugarCE 5.2.0',
  'author' => 'Patrick Tuite',
  'published_date' => '2009-01-28 16:16:00',
  'version' => '0.1',
  'type' => 'langpack',
  'icon' => '',
  'is_uninstallable' => TRUE,
  'copy_files' =>
	  array (
		'from_dir' => 'en_ie_520',
		'to_dir' => '',
		'force_copy' =>
			array (
			),
	  ),
);
?>