Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ asdf plugin-add sqlc https://github.com/thokra/asdf-sqlc.git

```
% asdf install sqlc
Downloading sqlc from https://github.com/kyleconroy/sqlc/releases/download/v1.14.0/sqlc_1.14.0_linux_amd64.tar.gz
Downloading sqlc from https://github.com/sqlc-dev/sqlc/releases/download/v1.14.0/sqlc_1.14.0_linux_amd64.tar.gz
```
2 changes: 1 addition & 1 deletion bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ get_download_url() {
platform="$(get_arch)"
cpu="amd64"

echo "https://github.com/kyleconroy/sqlc/releases/download/v${version}/sqlc_${version}_${platform}_${cpu}.tar.gz"
echo "https://github.com/sqlc-dev/sqlc/releases/download/v${version}/sqlc_${version}_${platform}_${cpu}.tar.gz"
}

install_sqlc "$ASDF_INSTALL_TYPE" "$ASDF_INSTALL_VERSION" "$ASDF_INSTALL_PATH"
2 changes: 1 addition & 1 deletion bin/list-all
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

releases_path=https://api.github.com/repos/kyleconroy/sqlc/releases
releases_path=https://api.github.com/repos/sqlc-dev/sqlc/releases
cmd="curl -s"
if [ -n "$OAUTH_TOKEN" ]; then
cmd="$cmd -H 'Authorization: token $OAUTH_TOKEN'"
Expand Down