Skip to content

Commit 97d4860

Browse files
committed
Add logs for debugging
1 parent 2d38983 commit 97d4860

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
from os.path import dirname, join
23
from urllib.request import urlretrieve
34

@@ -6,6 +7,12 @@
67
if __name__ == "__main__":
78
cdn = "https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.4.3/mermaid.js"
89
static = join(dirname(__file__), "src", "django_mermaid", "static")
10+
print("ls src\n\n")
11+
os.system("ls src")
12+
print("ls src/django_mermaid\n\n")
13+
os.system("ls src/django_mermaid")
14+
print("ls src/django_mermaid/static\n\n")
15+
os.system("ls src/django_mermaid/static")
916
open(join(static, "mermaid.js"), "w").close()
1017
urlretrieve(cdn, join(static, "mermaid.js"))
1118
setup()

0 commit comments

Comments
 (0)