Index: openacs-4/packages/acs-bootstrap-installer/installer/packages-install.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/Attic/packages-install.tcl,v diff -u -r1.10 -r1.11 --- openacs-4/packages/acs-bootstrap-installer/installer/packages-install.tcl 11 Sep 2003 09:08:35 -0000 1.10 +++ openacs-4/packages/acs-bootstrap-installer/installer/packages-install.tcl 19 Sep 2003 12:48:38 -0000 1.11 @@ -62,11 +62,12 @@ # Now process the application bundle if an install.xml file was found. - if { [nsv_exists acs_application node] } { + if { [file exists [apm_install_xml_file_path]] } { + set root_node [apm_load_install_xml_file] ns_write "

Loading packages for the [nsv_get acs_application pretty_name] application.

" - set actions [xml_node_get_children_by_name [nsv_get acs_application node] actions] + set actions [xml_node_get_children_by_name $root_node actions] if { [llength $actions] > 1 } { ns_log Error "Error in \"install.xml\": only one action node is allowed" ns_write "

Error in \"install.xml\": only one action node is allowed

"