Skip to content

Commit 6a2973a

Browse files
committed
add abs_entrypoint when entrypoint_candidates==0
Most of the time this should raise exception. Adding this line should at least allow the bundle to be created.
1 parent 5dddfcb commit 6a2973a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rsconnect/bundle.py

+1
Original file line numberDiff line numberDiff line change
@@ -1613,6 +1613,7 @@ def create_voila_manifest(
16131613
if len(entrypoint_candidates) <= 0:
16141614
if entrypoint is None:
16151615
raise RSConnectException(MULTI_NOTEBOOK_EXC_MSG)
1616+
entrypoint = abs_entrypoint(path, entrypoint)
16161617
elif len(entrypoint_candidates) == 1:
16171618
if entrypoint:
16181619
entrypoint = abs_entrypoint(path, entrypoint)

0 commit comments

Comments
 (0)