Skip to content

Commit

Permalink
Merge pull request #181 from DCC-EX/180-bug-report-cannot-clone-repos…
Browse files Browse the repository at this point in the history
…itories

180 bug report cannot clone repositories
  • Loading branch information
pmantoine authored Jul 9, 2024
2 parents e8e0fcf + 9d4d599 commit 7254d20
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
Binary file modified dist/EX-Installer-Linux64
Binary file not shown.
Binary file modified dist/EX-Installer-Win32.exe
Binary file not shown.
Binary file modified dist/EX-Installer-Win64.exe
Binary file not shown.
Binary file modified dist/EX-Installer-macOS
Binary file not shown.
6 changes: 1 addition & 5 deletions ex_installer/file_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,6 @@ def get_base_dir():
os.path.expanduser("~"),
"ex-installer",
)
if sys.platform.startswith("win"):
_cli_path = _cli_path.replace("\\", "\\\\")
FileManager.log.debug(_cli_path)
return _cli_path
else:
Expand All @@ -189,9 +187,7 @@ def get_install_dir(product_name):
Returns the path to extract software into
"""
if FileManager.get_base_dir():
dir = os.path.join(FileManager.get_base_dir().replace("\\\\", "\\"), product_name)
if sys.platform.startswith("win"):
dir = dir.replace("\\", "\\\\")
dir = os.path.join(FileManager.get_base_dir(), product_name)
FileManager.log.debug(dir)
return dir
else:
Expand Down
3 changes: 2 additions & 1 deletion ex_installer/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
read by the application build process to embed in the application details
"""

ex_installer_version = "0.0.19"
ex_installer_version = "0.0.20"

"""
Version history:
0.0.20 - Fix bug with Windows file system path preventing cloning repositories
0.0.19 - NOTE: Support for Windows 32bit is deprecated in this release
- Building STM32 platforms on Windows 32bit is no longer possible
- Numerous Python module updates to resolve security issues and a GUI bug on macOS
Expand Down

0 comments on commit 7254d20

Please sign in to comment.