File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ We currently support:
3636- MacOS
3737- WSL
3838
39+ For the remote server, we currently only support Linux ` x86_64 ` (64-bit)
40+ servers with ` glibc ` . ` musl ` libc (which is most notably used by Alpine Linux)
41+ is currently not supported on the remote server:
42+ [ #122 ] ( https://github.com/cdr/sshcode/issues/122 ) .
43+
3944## Usage
4045
4146``` bash
Original file line number Diff line number Diff line change @@ -345,6 +345,7 @@ func downloadScript(codeServerPath string) string {
345345 return fmt .Sprintf (
346346 `set -euxo pipefail || exit 1
347347
348+ [ "$(uname -m)" != "x86_64" ] && echo "Unsupported server architecture $(uname -m). code-server only has releases for x86_64 systems." && exit 1
348349pkill -f %v || true
349350mkdir -p ~/.local/share/code-server %v
350351cd %v
You can’t perform that action at this time.
0 commit comments