File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " Tailscale" ,
33 "id" : " tailscale" ,
4- "version" : " 1.0.6 " ,
4+ "version" : " 1.0.7 " ,
55 "description" : " Connect to your tailnet in your development container" ,
66 "documentationURL" : " https://tailscale.com/kb/1160/github-codespaces/" ,
77 "licenseURL" : " https://github.com/tailscale/codespace/blob/main/LICENSE" ,
Original file line number Diff line number Diff line change 55
66set -euo pipefail
77
8- tailscale_url=" https://pkgs.tailscale.com/stable/tailscale_${VERSION} _amd64.tgz"
8+ platform=$( uname -m)
9+ if [ " $platform " = " x86_64" ]; then
10+ tailscale_url=" https://pkgs.tailscale.com/stable/tailscale_${VERSION} _amd64.tgz"
11+ elif [ " $platform " = " aarch64" ] || [ " $platform " = " arm64" ]; then
12+ tailscale_url=" https://pkgs.tailscale.com/stable/tailscale_${VERSION} _arm64.tgz"
13+ else
14+ echo " Unsupported platform: $platform "
15+ exit 1
16+ fi
917
1018download () {
1119 if command -v curl & > /dev/null; then
You can’t perform that action at this time.
0 commit comments