Skip to content

Commit 2e3b00c

Browse files
authored
Merge pull request #88 from JedMeister/18.x-update-and-bugfix
Bugfix bt-iso and update selenium
2 parents bb82276 + e14bc1b commit 2e3b00c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bt-iso

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ if [[ -z "$no_screens" ]]; then
335335
export TKL_SCREENSHOT_PATH=$BT_PRODUCTS/$appname/build/screens
336336
mkdir -p "$TKL_SCREENSHOT_PATH"
337337
SELENIUM_CONT=docker.io/selenium/standalone-chrome
338-
SELENIUM_TAG=4.7.2-20221219
338+
SELENIUM_TAG=4.18.1-20240224
339339

340340
info "Starting selenium container"
341341
unset add_hosts
@@ -347,7 +347,7 @@ if [[ -z "$no_screens" ]]; then
347347
# check if selenium container already exists
348348
existing_instance=$(podman ps -a --format "{{.ID}}:{{.Image}}" \
349349
| grep "$SELENIUM_CONT:$SELENIUM_TAG" || [[ $? == 1 ]])
350-
if [[ $(wc -l <<<"existing_instance") -gt 1 ]]; then
350+
if [[ $(wc -l <<<"$existing_instance") -gt 1 ]]; then
351351
fatal "More than one selenium instance found"
352352
fi
353353
existing_id=$(sed -En "s|(^[a-f0-9]+):.*|\1|p" <<<"$existing_instance")

0 commit comments

Comments
 (0)