File tree Expand file tree Collapse file tree
src/projects/regression_tests/.devcontainer/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66mkdir -p /etc/apt/keyrings
77wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo tee /etc/apt/keyrings/google.asc > /dev/null
88if [ " $TARGETARCH " = " arm64" ] || [ " $TARGETARCH " = " aarch64" ]; then
9- sudo sh -c ' echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
9+ sh -c ' echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
1010else
11- sudo sh -c ' echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
11+ sh -c ' echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
1212fi
13- sudo apt-get update
14- sudo apt-get install -y google-chrome-stable
13+ apt-get update
14+ apt-get install -y google-chrome-stable
1515
1616# clean up
1717apt-get clean
You can’t perform that action at this time.
0 commit comments