Skip to content

Commit

Permalink
Merge pull request #2543 from SasView/2542-lowercase-pyside6-linux-fix
Browse files Browse the repository at this point in the history
Lowercase PySide6 executables for Linux compatability #2542
  • Loading branch information
Wojciech Potrzebowski authored Jul 4, 2023
2 parents 53a198e + b3d2917 commit f0a504e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sas/qtgui/convertUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def pyrrc(in_file, out_file):
"""
Run the qt resource compiler
"""
run_line = f"PySide6-rcc {in_file} -o {out_file}"
run_line = f"pyside6-rcc {in_file} -o {out_file}"
os.system(run_line)


Expand All @@ -34,7 +34,7 @@ def pyuic(in_file, out_file):
"""
in_file2 = os.path.abspath(in_file)
out_file2 = os.path.abspath(out_file)
run_line = "PySide6-uic " + in_file2 + " -o " + out_file2
run_line = "pyside6-uic " + in_file2 + " -o " + out_file2
os.system(run_line)

def file_in_newer(file_in, file_out):
Expand Down

0 comments on commit f0a504e

Please # to comment.