forked from Alucard24/Rope
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |