Fix bash library path

fixes
Vadim vtroshchinskiy 2024-10-30 15:09:51 +01:00
parent ccee9d70be
commit beae38076a
1 changed files with 1 additions and 1 deletions

View File

@ -813,7 +813,7 @@ class OpengnsysGitLibrary:
with tempfile.NamedTemporaryFile(mode='w', delete=False) as temp_file:
temp_file.write("#!/bin/bash\n")
temp_file.write("for lib in /opt/oglive/rootfs/opt/opengnsys/lib/engine/bin/*.lib ; do\n")
temp_file.write("for lib in /opt/opengnsys/client/lib/engine/bin/*.lib ; do\n")
temp_file.write(" source $lib\n")
temp_file.write("done\n")