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.
2 parents 03d3e16 + a893848 commit 7eb1290Copy full SHA for 7eb1290
functions/behat.sh
@@ -84,11 +84,16 @@ function drupal_ti_ensure_chrome() {
84
return
85
fi
86
87
+ # @todo Move to defaults API.
88
+ if [ -z "$DRUPAL_TI_BEHAT_CHROME_URL" ]
89
+ then
90
+ DRUPAL_TI_BEHAT_CHROME_URL="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
91
+ fi
92
+
93
drupal_ti_ensure_apt_get
94
(
95
cd $DRUPAL_TI_DIST_DIR
- # @todo Make version configurable.
- wget -O google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
96
+ wget -O google-chrome-stable_current_amd64.deb "$DRUPAL_TI_BEHAT_CHROME_URL"
97
dpkg -x google-chrome-stable_current_amd64.deb .
98
)
99
drupal_ti_ensure_bin_dir
0 commit comments