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.
1 parent 3876cc5 commit e21caa0Copy full SHA for e21caa0
tests/e2e-playwright/Makefile
@@ -173,6 +173,12 @@ $(SLEEPERS_INPUT_FILE) $(JUPYTER_LAB_INPUT_FILE) $(CLASSIC_TIP_INPUT_FILE) $(S4L
173
else \
174
read -p "Enter the service key: " SERVICE_KEY; \
175
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; \
182
fi; \
183
elif [ "$@" = "$(SLEEPERS_INPUT_FILE)" ]; then \
184
read -p "Enter the number of sleepers: " NUM_SLEEPERS; \
0 commit comments