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 1bcc960 commit f26be5fCopy full SHA for f26be5f
.github/workflows/examples.yml
@@ -85,7 +85,7 @@ jobs:
85
echo -e "Already installed $(google-chrome --version)\n"
86
MINIMUM_REQUIRED_CHROME_VERSION=75
87
INSTALLED_CHROME_MAJOR_VERSION="$(google-chrome --version | tr ' .' '\t' | cut -f3)"
88
- if [[ $INSTALLED_CHROME_MAJOR_VERSION < $MINIMUM_REQUIRED_CHROME_VERSION ]]; then
+ if [[ $INSTALLED_CHROME_MAJOR_VERSION -lt $MINIMUM_REQUIRED_CHROME_VERSION ]]; then
89
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
90
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
91
sudo apt-get update
0 commit comments