Add eyes-thanks, rclone, make python script shorter

This commit is contained in:
2023-01-31 23:07:01 +11:00
parent 216a0014e3
commit db64b2f37a
3 changed files with 113 additions and 74 deletions
+1 -1
View File
@@ -698,7 +698,7 @@ def run(user_app_list,
global devenv_script_buffer
devenv_script_buffer += "set PATH=%~dp0Symlinks;%PATH%\n"
devenv_script_name = "devenv.bat" if IS_WINDOWS else "devenv.sh"
devenv_script_name = "dev_env.bat" if IS_WINDOWS else "dev_env.sh"
devenv_script_path = pathlib.Path(install_dir, devenv_script_name)
lprint(f"Writing script to augment the environment with installed applications: {devenv_script_path}")
with open(devenv_script_path, 'w') as file: