We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4838b11 + 2007790 commit 40c12fcCopy full SHA for 40c12fc
rsconnect/bundle.py
@@ -670,8 +670,7 @@ def create_file_list(
670
excludes = excludes if excludes else []
671
glob_set = create_glob_set(path, excludes)
672
exclude_paths = {Path(p) for p in excludes}
673
- file_set = set() # type: typing.Set[str]
674
- file_set.union(extra_files)
+ file_set = set(extra_files) # type: typing.Set[str]
675
676
if isfile(path):
677
file_set.add(path)
0 commit comments