Skip to content

Commit d48a74c

Browse files
authored
Merge pull request #248 from rstudio/sagerb-fix-deploy-html-requiring-image
Fix bug - remove image from deploy_html
2 parents 0ace847 + 524f456 commit d48a74c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rsconnect/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,6 @@ def deploy_html(
10381038
entrypoint,
10391039
extra_files,
10401040
excludes,
1041-
image,
10421041
):
10431042
set_verbosity(verbose)
10441043

@@ -1059,7 +1058,7 @@ def deploy_html(
10591058

10601059
with cli_feedback("Creating deployment bundle"):
10611060
try:
1062-
bundle = make_html_bundle(path, entrypoint, image, extra_files, excludes)
1061+
bundle = make_html_bundle(path, entrypoint, "", extra_files, excludes)
10631062
except IOError as error:
10641063
msg = "Unable to include the file %s in the bundle: %s" % (
10651064
error.filename,

0 commit comments

Comments
 (0)