diff --git a/profile/.profile b/profile/.profile index 390e918..f901290 100644 --- a/profile/.profile +++ b/profile/.profile @@ -28,9 +28,9 @@ alias drestart='cd ~/ceremonyclient/ && docker compose down && docker compose up alias dstop='cd ~/ceremonyclient/ && docker compose down && cd ~' # Shortcuts for Service alias peer-count="cd ~/ceremonyclient/node && grpcurl -plaintext -max-msg-sz 150000000 localhost:8337 quilibrium.node.node.pb.NodeService.GetPeerManifests | grep peerId | wc -l && cd ~" -alias node-info="cd ~/ceremonyclient/node && ./node-2.0-linux-amd64 -node-info && cd ~" -alias db-console="cd ~/ceremonyclient/node && ./node-2.0-linux-amd64 --db-console && cd ~" -alias balance="cd ~/ceremonyclient/node && ./node-2.0-linux-amd64 -balance && cd ~" +alias node-info="cd ~/ceremonyclient/node && ./node-2.0.0.1-linux-amd64 -node-info && cd ~" +alias db-console="cd ~/ceremonyclient/node && ./node-2.0.0.1-linux-amd64 --db-console && cd ~" +alias balance="cd ~/ceremonyclient/node && ./node-2.0.0.1-linux-amd64 -balance && cd ~" alias nlog="sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat" alias increment="sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat | grep time_taken" alias nstart="service ceremonyclient start" diff --git a/update/update.sh b/update/update.sh index b4bf4a0..721d630 100644 --- a/update/update.sh +++ b/update/update.sh @@ -123,7 +123,7 @@ fi OS_ARCH=$(get_os_arch) # Base URL for the Quilibrium releases -BASE_URL="https://releases.quilibrium.com/release" +BASE_URL="https://releases.quilibrium.com/qclient-release" # Fetch the list of files from the release page FILES=$(curl -s $BASE_URL | grep -oE "qclient-[0-9]+\.[0-9]+\.[0-9]+-${OS_ARCH}(\.dgst)?(\.sig\.[0-9]+)?") @@ -147,8 +147,8 @@ for file in $FILES; do echo "------------------------" done - mv $QCLIENT_BINARY qclient - chmod +x qclient + // + chmod +x qclient* echo "✅ qClient binary downloaded and configured successfully." echo