Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lib_base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikang
lib_base
Commits
97491989
Commit
97491989
authored
Apr 18, 2019
by
sikang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update script
parent
af2a18cc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
script/base_push.sh
+2
-1
script/code/rename_api.py
+3
-0
No files found.
script/base_push.sh
View file @
97491989
cd
..
git add
.
echo
-n
"commit message: "
read
message
git add
.
git commit
-m
"
${
message
}
"
git push origin master
\ No newline at end of file
script/code/rename_api.py
View file @
97491989
...
...
@@ -20,6 +20,9 @@ def rename_api(path):
#替换api
with
open
(
path
,
"w"
,
encoding
=
"utf-8"
)
as
f_w
:
for
api_l
in
api_lines
:
if
"//API-REPAIR*-*"
in
api_l
:
api_l
=
api_l
.
split
(
"*-*"
)[
1
]
if
(
api_map
[
1
]
+
"/"
in
api_l
or
api_map
[
1
]
+
"
\"
"
in
api_l
)
and
(
"@GET"
in
api_l
or
"@PUT"
in
api_l
or
"@POST"
in
api_l
):
api_l
=
api_l
.
replace
(
api_map
[
1
],
api_map
[
0
])
print
(
api_map
[
1
]
+
" -> "
+
api_map
[
0
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment