Skip to content

Commit 75b293c

Browse files
committed
Fix interpreter version test for new image name
The grep pattern matched `rstudio-connect` which no longer appears in the rendered image reference (`posit/connect`).
1 parent 07110c8 commit 75b293c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ test-connect-interpreter-versions:
9696
helm template ./charts/rstudio-connect \
9797
--set launcher.enabled=false \
9898
--show-only templates/deployment.yaml | \
99-
grep "image\:.*rstudio-connect.*" | \
99+
grep "image\:.*posit/connect\:.*" | \
100100
awk -F": " '{print $2}' | \
101101
xargs)
102102

0 commit comments

Comments
 (0)