changeset 32:f878d9f62211

fix syntax error and actually execute the commands
author Jeff Hammel <k0scist@gmail.com>
date Tue, 16 Mar 2010 11:55:12 -0400
parents 4f07325e727a
children 8e5746ef15fe
files python/install_config.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/python/install_config.py	Tue Mar 16 11:52:26 2010 -0400
+++ b/python/install_config.py	Tue Mar 16 11:55:12 2010 -0400
@@ -47,4 +47,6 @@
 # install some python
 install_develop('smartopen')
 
-postinstall_commands = [ ['ln', '-s', os.path.join(HOME, 'smartopen', 'bin', 'smartopen'), os.path.join(HOME, 'bin', 'smartopen')]
+postinstall_commands = [ ['ln', '-s', os.path.join(HOME, 'smartopen', 'bin', 'smartopen'), os.path.join(HOME, 'bin', 'smartopen') ] ]
+
+execute(*postinstall_commands)