You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 17, 2021. It is now read-only.
Allows users to change which code-server release to download.
Changed downloads to use
https://codesrv-ci.cdr.sh/releases/$release/linux-x86_64/code-server.
Add last-version file in download script to keep track of which version
is cached, otherwise changing versions might result in them not being
downloaded (as curl thinks it's up to date).
fl.StringVar(&c.uploadCodeServer, "upload-code-server", "", "custom code-server binary to upload to the remote host")
63
+
fl.StringVar(&c.uploadCodeServer, "upload-code-server", "", "custom code-server binary to upload to the remote host, takes precedence over --code-server-version")
64
+
fl.StringVar(&c.codeServerVersion, "code-server-version", defaultCodeServerVersion, `custom code-server version to download on the remote host, accepts any release name, "latest", or "latest-preview" (changing this may cause issues)`)
0 commit comments