Index: openacs-4/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl,v diff -u -N -r1.43.2.3 -r1.43.2.4 --- openacs-4/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl 15 Sep 2016 07:21:10 -0000 1.43.2.3 +++ openacs-4/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl 24 Feb 2017 14:44:35 -0000 1.43.2.4 @@ -491,12 +491,14 @@ @author Peter Marklund } { + set fn [apm_install_xml_file_path] # Abort if there is no install.xml file - if { ![file exists [apm_install_xml_file_path]] } { + if { ![file exists $fn] } { return "" } - set file [open [apm_install_xml_file_path]] + #ns_log notice "==== LOADING xml file: $fn" + set file [open $fn] set root_node [xml_doc_get_first_node [xml_parse -persist [read $file]]] close $file