-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from OpenBMB/git-status-check
Git status check
- Loading branch information
Showing
8 changed files
with
291 additions
and
3,541 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
from repo_agent.runner import Runner | ||
import sys | ||
|
||
from repo_agent.runner import Runner, delete_fake_files | ||
from repo_agent.log import logger | ||
|
||
|
||
runner = Runner() | ||
if len(sys.argv) == 1: | ||
runner = Runner() | ||
|
||
# runner.meta_info.target_repo_hierarchical_tree.print_recursive() | ||
runner.run() | ||
# runner.meta_info.target_repo_hierarchical_tree.print_recursive() | ||
runner.run() | ||
|
||
logger.info("文档任务完成。") | ||
logger.info("文档任务完成。") | ||
elif len(sys.argv) == 2: | ||
if sys.argv[1] == "clean": | ||
delete_fake_files() |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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,3 @@ | ||
|
||
|
||
latest_verison_substring = "_latest_version.py" |