[Erp5-report] r40483 luke - /erp5/trunk/utils/erp5.appliance.test/src/test.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Nov 22 16:55:42 CET 2010
Author: luke
Date: Mon Nov 22 16:55:40 2010
New Revision: 40483
URL: http://svn.erp5.org?rev=40483&view=rev
Log:
- fix condition
Modified:
erp5/trunk/utils/erp5.appliance.test/src/test.py
Modified: erp5/trunk/utils/erp5.appliance.test/src/test.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.appliance.test/src/test.py?rev=40483&r1=40482&r2=40483&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.appliance.test/src/test.py [utf8] (original)
+++ erp5/trunk/utils/erp5.appliance.test/src/test.py [utf8] Mon Nov 22 16:55:40 2010
@@ -383,7 +383,7 @@ def run_once(config, software_path, inst
(os.path.join(software_path, 'instance-profiles'), 'instance-profiles'),
(os.path.join(software_path, 'profiles'), 'profiles'),
(os.path.join(software_path, 'software-profiles'), 'software-profiles')]:
- if not os.path.exists(destination_path):
+ if not os.path.exists(os.path.join(destination_path, link_path)):
callWithTimeout(link_command + [link_path],
config, cwd=instance_path)
More information about the Erp5-report
mailing list