Skip to content

Commit

Permalink
Merge pull request #16 from oocococo/oocococo/x86_64
Browse files Browse the repository at this point in the history
support x86_64
  • Loading branch information
adyanth authored Nov 13, 2021
2 parents a050a6a + 9688147 commit afc0127
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions usr/bin/tailscale
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ if [ ! -f /tmp/tailscale ]; then
arch=arm
elif [ "$arch" == "aarch64" ]; then
arch=arm64
elif [ "$arch" == "x86_64" ]; then
arch=amd64
fi

tailscale_version="1.16.2"
Expand Down
2 changes: 2 additions & 0 deletions usr/bin/tailscaled
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ if [ ! -f /tmp/tailscaled ]; then
arch=arm
elif [ "$arch" == "aarch64" ]; then
arch=arm64
elif [ "$arch" == "x86_64" ]; then
arch=amd64
fi

tailscale_version="1.16.2"
Expand Down

0 comments on commit afc0127

Please sign in to comment.