From 5aacb6032cdb05d965522b3deec64ce60c387188 Mon Sep 17 00:00:00 2001 From: Claudio Zambaldi Date: Wed, 9 Nov 2011 18:04:51 +0000 Subject: [PATCH] removed outdated comments --- processing/setup/setup_processing.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/processing/setup/setup_processing.py b/processing/setup/setup_processing.py index 479249119..efc791b90 100755 --- a/processing/setup/setup_processing.py +++ b/processing/setup/setup_processing.py @@ -1,11 +1,6 @@ #!/usr/bin/env python -# renders the postprocessing routines acessible from everywhere. -# you need a ~/bin directory in your home folder -# if necessary, add the bin directory to your path by -# adding the following lines to your .bashrc file: -# PATH="$PATH:~/bin" -# export PATH +# Makes postprocessing routines acessible from everywhere. import os,sys,glob @@ -59,7 +54,6 @@ execute = { \ ], } -homedir = os.getenv('HOME') damask_root = os.getenv('DAMASK_ROOT') if damask_root == '' or damask_root == None: damask_root = os.path.join(os.path.dirname(sys.argv[0]),'../../') damask_bin = os.getenv('DAMASK_BIN') @@ -79,7 +73,7 @@ for dir in bin_link: os.symlink(src,sym_link) #--- uncomment next lines to remove your old symbolic links in ~/bin - #old_link=sym_link.replace(damask_root,homedir) + #old_link=sym_link.replace(damask_root,os.getenv('HOME')) #if os.path.lexists(old_link): # os.remove(old_link)