From 6f19f19f0867e3c64e82cd5d5c80eac09dde10b6 Mon Sep 17 00:00:00 2001 From: LightRider <48626097+LightRider5@users.noreply.github.com> Date: Mon, 5 Jun 2023 14:51:20 +0200 Subject: [PATCH] Updated install.sh for new repo name The install.sh was still using casey/ord repo. --- install.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index d9b4adc171..ba6f57f0b3 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,6 @@ #!/usr/bin/env bash set -euo pipefail - if [ ! -z ${GITHUB_ACTIONS-} ]; then set -x fi @@ -24,7 +23,7 @@ OPTIONS: EOF } -git=casey/ord +git=ordinals/ord crate=ord url=https://github.com/ordinals/ord releases=$url/releases @@ -98,7 +97,7 @@ if [ -z ${dest-} ]; then fi if [ -z ${tag-} ]; then - tag=$(curl --proto =https --tlsv1.2 -sSf https://api.github.com/repos/casey/ord/releases/latest | + tag=$(curl --proto =https --tlsv1.2 -sSf https://api.github.com/repos/ordinals/ord/releases/latest | grep tag_name | cut -d'"' -f4 )