Skip to content

Commit

Permalink
added install and update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
argenspin committed Aug 21, 2024
1 parent 11e910e commit 66bd181
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Install_Rope.bat
Original file line number Diff line number Diff line change
@@ -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
9 changes: 9 additions & 0 deletions Update_Rope.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
call setenv.bat
"%GIT_EXECUTABLE%" pull origin main
"%PYTHON_EXECUTABLE%" .\scripts\download_models.py

echo.
echo --------Update completed--------
echo.

pause
4 changes: 4 additions & 0 deletions scripts/update_rope.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from . import download_models

''' Additional Functions to execute when updating'''
pass

0 comments on commit 66bd181

Please sign in to comment.