We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b29a588 commit b51adf8Copy full SHA for b51adf8
platform.py
@@ -308,7 +308,9 @@ def _install_tl_install(self, version: str) -> bool:
308
# Copy tool-esp_install content to tl-install location
309
if safe_copy_directory(tl_install_path, old_tl_install_path):
310
logger.info(f"Content copied from {tl_install_name} to old tl-install location")
311
- tl_piopm_path = os.path.join(old_tl_install_path, ".piopm")
+ old_tl_piopm_path = os.path.join(old_tl_install_path, ".piopm")
312
+ safe_remove_file(old_tl_piopm_path)
313
+ tl_piopm_path = os.path.join(tl_install_path, ".piopm")
314
safe_remove_file(tl_piopm_path)
315
else:
316
logger.warning(f"Failed to copy content to old tl-install location")
0 commit comments