75
75
76
76
echo_latest_version () {
77
77
if [ " ${EDGE-} " ]; then
78
- version=" $( curl -fsSL https://api.github.com/repos/cdr /code-server/releases | awk ' match($0,/.*"html_url": "(.*\/releases\/tag\/.*)".*/)' | head -n 1 | awk -F ' "' ' {print $4}' ) "
78
+ version=" $( curl -fsSL https://api.github.com/repos/coder /code-server/releases | awk ' match($0,/.*"html_url": "(.*\/releases\/tag\/.*)".*/)' | head -n 1 | awk -F ' "' ' {print $4}' ) "
79
79
else
80
80
# https://gist.github.com/lukechilds/a83e1d7127b78fef38c2914c4ececc3c#gistcomment-2758860
81
- version=" $( curl -fsSLI -o /dev/null -w " %{url_effective}" https://github.com/cdr /code-server/releases/latest) "
81
+ version=" $( curl -fsSLI -o /dev/null -w " %{url_effective}" https://github.com/coder /code-server/releases/latest) "
82
82
fi
83
- version=" ${version# https:// github.com/ cdr / code-server/ releases/ tag/ } "
83
+ version=" ${version# https:// github.com/ coder / code-server/ releases/ tag/ } "
84
84
version=" ${version# v} "
85
85
echo " $version "
86
86
}
@@ -351,7 +351,7 @@ install_deb() {
351
351
echoh " Installing v$VERSION of the $ARCH deb package from GitHub."
352
352
echoh
353
353
354
- fetch " https://github.com/cdr /code-server/releases/download/v$VERSION /code-server_${VERSION} _$ARCH .deb" \
354
+ fetch " https://github.com/coder /code-server/releases/download/v$VERSION /code-server_${VERSION} _$ARCH .deb" \
355
355
" $CACHE_DIR /code-server_${VERSION} _$ARCH .deb"
356
356
sudo_sh_c dpkg -i " $CACHE_DIR /code-server_${VERSION} _$ARCH .deb"
357
357
@@ -362,7 +362,7 @@ install_rpm() {
362
362
echoh " Installing v$VERSION of the $ARCH rpm package from GitHub."
363
363
echoh
364
364
365
- fetch " https://github.com/cdr /code-server/releases/download/v$VERSION /code-server-$VERSION -$ARCH .rpm" \
365
+ fetch " https://github.com/coder /code-server/releases/download/v$VERSION /code-server-$VERSION -$ARCH .rpm" \
366
366
" $CACHE_DIR /code-server-$VERSION -$ARCH .rpm"
367
367
sudo_sh_c rpm -i " $CACHE_DIR /code-server-$VERSION -$ARCH .rpm"
368
368
@@ -388,7 +388,7 @@ install_standalone() {
388
388
echoh " Installing v$VERSION of the $ARCH release from GitHub."
389
389
echoh
390
390
391
- fetch " https://github.com/cdr /code-server/releases/download/v$VERSION /code-server-$VERSION -$OS -$ARCH .tar.gz" \
391
+ fetch " https://github.com/coder /code-server/releases/download/v$VERSION /code-server-$VERSION -$OS -$ARCH .tar.gz" \
392
392
" $CACHE_DIR /code-server-$VERSION -$OS -$ARCH .tar.gz"
393
393
394
394
# -w only works if the directory exists so try creating it first. If this
0 commit comments