Skip to content

Commit 40c12fc

Browse files
authored
Merge pull request #343 from rstudio/bcwu-fix-htmlextrafiles
fix extra files not being included in deploy html
2 parents 4838b11 + 2007790 commit 40c12fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rsconnect/bundle.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -670,8 +670,7 @@ def create_file_list(
670670
excludes = excludes if excludes else []
671671
glob_set = create_glob_set(path, excludes)
672672
exclude_paths = {Path(p) for p in excludes}
673-
file_set = set() # type: typing.Set[str]
674-
file_set.union(extra_files)
673+
file_set = set(extra_files) # type: typing.Set[str]
675674

676675
if isfile(path):
677676
file_set.add(path)

0 commit comments

Comments
 (0)