env_modules_option += "%s" % ','.join(env_modules)
args.append(env_modules_option)
- currentPath = os.path.realpath(os.path.dirname(os.path.abspath(__file__)))
- proc = subprocess.Popen(['./.salome_run'] + args,
- close_fds=True, cwd=currentPath)
+ appliPath = os.path.realpath(os.path.dirname(os.path.abspath(__file__)))
+ proc = subprocess.Popen([os.path.join(appliPath, '.salome_run')] + args, close_fds=True)
out, err = proc.communicate()
return out, err, proc.returncode