Merge branch 'bugfix/KASM-5187_torbrowser_download' into 'develop'

KASM-5187 Fix Torbrowser download parsing

Closes KASM-5187

See merge request kasm-technologies/internal/workspaces-images!149
This commit is contained in:
Justin Travis 2023-11-01 12:58:51 +00:00
commit c58f406ff0
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ if [ "$(arch)" == "aarch64" ]; then
SF_VERSION=$(curl -sI https://sourceforge.net/projects/tor-browser-ports/files/latest/download | awk -F'(ports/|/tor)' '/location/ {print $3}')
FULL_TOR_URL="https://downloads.sourceforge.net/project/tor-browser-ports/${SF_VERSION}/tor-browser-linux-arm64-${SF_VERSION}_ALL.tar.xz"
else
TOR_URL=$(curl -q https://www.torproject.org/download/ | grep downloadLink | grep linux64 | sed 's/.*href="//g' | cut -d '"' -f1 | head -1)
TOR_URL=$(curl -q https://www.torproject.org/download/ | grep downloadLink | grep linux | sed 's/.*href="//g' | cut -d '"' -f1 | head -1)
FULL_TOR_URL="https://www.torproject.org/${TOR_URL}"
fi
wget --quiet "${FULL_TOR_URL}" -O /tmp/torbrowser.tar.xz