Compare commits
	
		
			No commits in common. "aec2d9898c4cdbf14a48278d15c0d92203667d71" and "a7a9768b6f122483745ec0cf6542d5069ca6b931" have entirely different histories.
		
	
	
		
			aec2d9898c
			...
			a7a9768b6f
		
	
		|  | @ -42,9 +42,7 @@ apt_repo="/etc/apt/sources.list.d" | ||||||
| ENABLE_BLESSM="TBD" | ENABLE_BLESSM="TBD" | ||||||
| G_CHROME=$(apt-cache madison google-chrome-stable|awk '{print$3}'|cut -d. -f1-3) | G_CHROME=$(apt-cache madison google-chrome-stable|awk '{print$3}'|cut -d. -f1-3) | ||||||
| CHROMELAB_URL="https://googlechromelabs.github.io/chrome-for-testing" | CHROMELAB_URL="https://googlechromelabs.github.io/chrome-for-testing" | ||||||
| CHD_LTST_DWNL=$(curl -s $CHROMELAB_URL/known-good-versions-with-downloads.json | \ | CHD_LTST_DWNL=$(curl -s $CHROMELAB_URL/known-good-versions-with-downloads.json | jq -r ".versions[].downloads.chromedriver | select(. != null) | .[].url" | grep linux64 | grep "$G_CHROME" | tail -1) | ||||||
|                 jq -r ".versions[].downloads.chromedriver | select(. != null) | .[].url" | \ |  | ||||||
|                 grep linux64 | grep "$G_CHROME" | tail -1) |  | ||||||
| CHD_LTST=$(awk -F '/' '{print$7}' <<< "$CHD_LTST_DWNL") | CHD_LTST=$(awk -F '/' '{print$7}' <<< "$CHD_LTST_DWNL") | ||||||
| CHD_LTST_2D="$(cut -d "." -f 1,2 <<<  "$CHD_LTST")" | CHD_LTST_2D="$(cut -d "." -f 1,2 <<<  "$CHD_LTST")" | ||||||
| CHDB="$(whereis chromedriver | awk '{print$2}')" | CHDB="$(whereis chromedriver | awk '{print$2}')" | ||||||
|  | @ -125,7 +123,6 @@ update_nodejs_repo() { | ||||||
|         -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0" |         -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0" | ||||||
|     apt-get install -q2 --only-upgrade <<< printf "${nodejs_package[@]}" |     apt-get install -q2 --only-upgrade <<< printf "${nodejs_package[@]}" | ||||||
| } | } | ||||||
| check_latest_gc() { |  | ||||||
| printwc "${Purple}" "Checking for Google Chrome\n" | printwc "${Purple}" "Checking for Google Chrome\n" | ||||||
| if [ -f /usr/bin/google-chrome ]; then | if [ -f /usr/bin/google-chrome ]; then | ||||||
|     GOOGL_VER_2D="$(/usr/bin/google-chrome --version|awk '{printf "%.1f\n", $NF}')" |     GOOGL_VER_2D="$(/usr/bin/google-chrome --version|awk '{printf "%.1f\n", $NF}')" | ||||||
|  | @ -133,11 +130,8 @@ else | ||||||
|     printwc "${Yellow}" " -> Seems there is no Google Chrome installed\n" |     printwc "${Yellow}" " -> Seems there is no Google Chrome installed\n" | ||||||
|     IS_GLG_CHRM="no" |     IS_GLG_CHRM="no" | ||||||
| fi | fi | ||||||
| } |  | ||||||
| check_latest_gc |  | ||||||
| upgrade_cd() { | upgrade_cd() { | ||||||
| if [ -n "$GOOGL_VER_2D" ]; then | if [ -n "$GOOGL_VER_2D" ]; then | ||||||
|     check_latest_gc |  | ||||||
|     if version_gt "$GOOGL_VER_2D" "$CHD_VER_2D" ; then |     if version_gt "$GOOGL_VER_2D" "$CHD_VER_2D" ; then | ||||||
|         echo "Upgrading Chromedriver to Google Chromes version" |         echo "Upgrading Chromedriver to Google Chromes version" | ||||||
|         wget -q "$CHD_LTST_DWNL" \ |         wget -q "$CHD_LTST_DWNL" \ | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue