Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
I
install.api
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Script
install.api
Commits
16baba52
Commit
16baba52
authored
Oct 28, 2020
by
jinkaiqiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linux上使用命令删除试试
parent
8ff77da0
Pipeline
#28944
passed with stage
in 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
flask_app.py
flask_app.py
+6
-1
No files found.
flask_app.py
View file @
16baba52
import
os
import
os
import
platform
import
shutil
import
shutil
import
stat
import
stat
import
time
import
time
...
@@ -38,8 +39,12 @@ def readonly_handler(func, path, execinfo):
...
@@ -38,8 +39,12 @@ def readonly_handler(func, path, execinfo):
time
.
sleep
(
0.5
)
time
.
sleep
(
0.5
)
func
(
path
)
func
(
path
)
if
os
.
path
.
exists
(
git_path
):
if
os
.
path
.
exists
(
git_path
):
shutil
.
rmtree
(
git_path
,
onerror
=
readonly_handler
)
if
platform
.
system
()
==
'Linux'
:
os
.
system
(
f
"rm -rf {deploy_repo_path}"
)
else
:
shutil
.
rmtree
(
git_path
,
onerror
=
readonly_handler
)
# docker环境线下老是出现问题,先用代码拉取
# docker环境线下老是出现问题,先用代码拉取
os
.
system
(
f
'git clone {deploy_repo_path} {git_path}'
)
os
.
system
(
f
'git clone {deploy_repo_path} {git_path}'
)
...
...
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