Skip to content

Commit 670cfdd

Browse files
authored
Merge pull request #283 from rstudio/fix-static
Fix directory creation for shinylive assets
2 parents 43f2a0b + 81be068 commit 670cfdd

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)