Skip to content

Commit e21caa0

Browse files
committed
add service version
1 parent 3876cc5 commit e21caa0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/e2e-playwright/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,12 @@ $(SLEEPERS_INPUT_FILE) $(JUPYTER_LAB_INPUT_FILE) $(CLASSIC_TIP_INPUT_FILE) $(S4L
173173
else \
174174
read -p "Enter the service key: " SERVICE_KEY; \
175175
echo "--service-key=$$SERVICE_KEY" >> $@; \
176+
read -p "Enter the service version (default to latest): " SERVICE_VERSION; \
177+
if [ -z "$$SERVICE_VERSION" ]; then \
178+
echo "No service version specified, using default."; \
179+
else \
180+
echo "--service-version=$$SERVICE_VERSION" >> $@; \
181+
fi; \
176182
fi; \
177183
elif [ "$@" = "$(SLEEPERS_INPUT_FILE)" ]; then \
178184
read -p "Enter the number of sleepers: " NUM_SLEEPERS; \

0 commit comments

Comments
 (0)