Skip to content

Commit 81be068

Browse files
committed
Fix directory creation for shinylive assets
1 parent 43f2a0b commit 81be068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/_static.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def _ensure_shinylive_local(
267267

268268
if not destdir.exists():
269269
print("Creating directory " + str(destdir))
270-
destdir.mkdir()
270+
destdir.mkdir(parents=True)
271271

272272
shinylive_bundle_dir = destdir / f"shinylive-{version}"
273273
if not shinylive_bundle_dir.exists():

0 commit comments

Comments
 (0)