From 408032e221585a366d877ce9452c0138fb0c57d0 Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 31 Jul 2008 04:01:57 +0000 Subject: [PATCH] Fix issue 0019952: problem with symbolic link creation --- bin/runSalome.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/runSalome.py b/bin/runSalome.py index 2a8aa66b1..aae7d0dfa 100755 --- a/bin/runSalome.py +++ b/bin/runSalome.py @@ -793,7 +793,10 @@ def searchFreePort(args, save_config=1): import shutil shutil.copyfile(omniorb_config, last_running_config) else: - os.remove(last_running_config) + try: + os.remove(last_running_config) + except OSError: + pass os.symlink(omniorb_config, last_running_config) pass pass -- 2.39.2