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 1
1
{
2
2
"name" : " Tailscale" ,
3
3
"id" : " tailscale" ,
4
- "version" : " 1.0.6 " ,
4
+ "version" : " 1.0.7 " ,
5
5
"description" : " Connect to your tailnet in your development container" ,
6
6
"documentationURL" : " https://tailscale.com/kb/1160/github-codespaces/" ,
7
7
"licenseURL" : " https://github.com/tailscale/codespace/blob/main/LICENSE" ,
Original file line number Diff line number Diff line change 5
5
6
6
set -euo pipefail
7
7
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
9
17
10
18
download () {
11
19
if command -v curl & > /dev/null; then
You can’t perform that action at this time.
0 commit comments