Skip to content

Commit

Permalink
Merge pull request #115 from andrewnicols/useSelVersionIsString
Browse files Browse the repository at this point in the history
Check USE_SELVERSION for true or false
  • Loading branch information
lameze authored Feb 22, 2024
2 parents 0b99a84 + 3be311a commit b0c6316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/main/modules/docker-selenium/docker-selenium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function docker-selenium_setup() {
# TODO: Remove this once we can start using upstream images (selenium 4 or later).
chromeimage="moodlehq/selenium-standalone-chrome:96.0-moodlehq"

if [[ -n ${USE_SELVERSION} ]]; then
if [[ ${USE_SELVERSION} != 'true' ]]; then
chromeimage="selenium/standalone-chrome:${SELVERSION}"
fi

Expand Down

0 comments on commit b0c6316

Please sign in to comment.