Skip to content

Commit 83d11ca

Browse files
authored
chore(lsp-postgres): accomodate renaming (#4900)
* chore: accomodate renaming * chore: update docs
1 parent 8cf5a2e commit 83d11ca

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.org

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
* Changelog
22
** Unreleased 9.0.1
3+
* Fix Accommodate renaming of lsp-postgres binaries
34
* Fix =lsp-org= for org >= 9.7 (see #4300)
45
* Add format on save support
56
* Fix beancount journal file init option

clients/lsp-postgres.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This is only for development use."
4646
:group 'lsp-postgres)
4747

4848
(defconst lsp-postgres-download-url-format
49-
"https://github.com/supabase-community/postgres-language-server/releases/latest/download/postgrestools_%s-%s"
49+
"https://github.com/supabase-community/postgres-language-server/releases/latest/download/postgres-language-server_%s-%s"
5050
"Format to the download url link.")
5151

5252
(defun lsp-postgres--postgres-ls-url ()
@@ -69,12 +69,12 @@ This is only for development use."
6969

7070
(lsp-dependency
7171
'postgres-ls
72-
'(:system "postgrestools")
72+
'(:system "postgres-language-server")
7373
`(:download :url ,(lsp-postgres--postgres-ls-url)
7474
:store-path ,(f-join lsp-postgres-server-store-path
7575
(pcase system-type
76-
('windows-nt "postgrestools.exe")
77-
(_ "postgrestools")))
76+
('windows-nt "postgres-language-server.exe")
77+
(_ "postgres-language-server")))
7878
:set-executable? t))
7979

8080
(lsp-register-client

0 commit comments

Comments
 (0)