We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 835124b commit 916563dCopy full SHA for 916563d
package.py
@@ -33,6 +33,8 @@ def main():
33
if os.path.exists(silk_dir):
34
shutil.rmtree(silk_dir)
35
shutil.copytree(SCRIPT_DIR + '/django_silky/silk/', silk_dir)
36
+ template_dir = silk_dir + 'templates/silk/'
37
+ shutil.copytree(template_dir, template_dir + 'templates/silk')
38
cmd = 'cd %s && python setup.py sdist' % dist_dir
39
print(cmd)
40
subprocess.call(cmd, shell=True)
0 commit comments