Spaces:
Running
on
Zero
Running
on
Zero
tori29umai
commited on
Commit
•
d610d4c
1
Parent(s):
f98bb34
Update app.py
Browse files
app.py
CHANGED
@@ -29,6 +29,10 @@ current_dir = os.getcwd()
|
|
29 |
def ignore_git_files(path, names):
|
30 |
return [name for name in names if name == '.git']
|
31 |
|
|
|
|
|
|
|
|
|
32 |
# クローンしたリポジトリの内容を現在のディレクトリにコピー
|
33 |
shutil.copytree(repo_dir, current_dir, ignore=ignore_git_files)
|
34 |
|
|
|
29 |
def ignore_git_files(path, names):
|
30 |
return [name for name in names if name == '.git']
|
31 |
|
32 |
+
# コピー先のディレクトリが存在する場合、削除する
|
33 |
+
if os.path.exists(current_dir):
|
34 |
+
shutil.rmtree(current_dir)
|
35 |
+
|
36 |
# クローンしたリポジトリの内容を現在のディレクトリにコピー
|
37 |
shutil.copytree(repo_dir, current_dir, ignore=ignore_git_files)
|
38 |
|