From f9354e7c8545ba1adc27ad5bd0b65e060ffa755a Mon Sep 17 00:00:00 2001 From: Rui Lopes Date: Mon, 29 Apr 2019 17:47:52 +0100 Subject: [PATCH] fix the example url --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c8d01d..776abdb 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ function nexus-component-exists { "$( http \ get \ - https://nexus.example.com/service/rest/beta/search \ + https://nexus.example.com/service/rest/v1/search \ "repository==$1" \ "name==$2" \ "version==$3" \ @@ -83,7 +83,7 @@ function Test-NexusComponent { [string]$version) $items = (Invoke-RestMethod ` -Method Get ` - -Uri https://nexus.example.com/service/rest/beta/search ` + -Uri https://nexus.example.com/service/rest/v1/search ` -Body @{ repository = $repository name = $name