From 89ad94a173005df095be62182e68cd1639ba2057 Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 31 Jul 2008 04:02:27 +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