diff --git a/README.md b/README.md index 30e498b..fbb1a2e 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/bin/install b/bin/install index dbe2546..94ba903 100755 --- a/bin/install +++ b/bin/install @@ -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" diff --git a/bin/list-all b/bin/list-all index 8bcccb1..0537125 100755 --- a/bin/list-all +++ b/bin/list-all @@ -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'"