diff --git a/Install_Rope.bat b/Install_Rope.bat new file mode 100644 index 0000000..d252e41 --- /dev/null +++ b/Install_Rope.bat @@ -0,0 +1,14 @@ +call setenv.bat +"%GIT_EXECUTABLE%" init +"%GIT_EXECUTABLE%" remote add origin https://github.com/argenspin/Rope-Live.git +"%GIT_EXECUTABLE%" fetch origin main +"%GIT_EXECUTABLE%" reset --hard origin/main + +call Update_Rope.bat + +echo. +echo --------Installation Complete-------- +echo. +echo You can now start the program by running the Start_Rope.bat file + +pause \ No newline at end of file diff --git a/Update_Rope.bat b/Update_Rope.bat new file mode 100644 index 0000000..1a55842 --- /dev/null +++ b/Update_Rope.bat @@ -0,0 +1,9 @@ +call setenv.bat +"%GIT_EXECUTABLE%" pull origin main +"%PYTHON_EXECUTABLE%" .\scripts\download_models.py + +echo. +echo --------Update completed-------- +echo. + +pause \ No newline at end of file diff --git a/scripts/update_rope.py b/scripts/update_rope.py new file mode 100644 index 0000000..11c54fd --- /dev/null +++ b/scripts/update_rope.py @@ -0,0 +1,4 @@ +from . import download_models + +''' Additional Functions to execute when updating''' +pass \ No newline at end of file